aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 8e54c4206938e7f608b6212f67f2614036e38485 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""wal - setup.py"""
from setuptools import setup

setup(
    name="pywal",
    version="0.1",
    author="Dylan Araps",
    author_email="[email protected]",
    description="🎨 Generate and change colorschemes on the fly",
    license="MIT",
    url="https://github.com/dylanaraps/wal.py",
    scripts=["wal"]
)