pywal/setup.py

14 lines
320 B
Python
Raw Normal View History

2017-06-20 12:42:47 +02:00
"""wal - setup.py"""
from setuptools import setup
setup(
2017-06-22 06:10:44 +02:00
name="pywal",
2017-06-20 12:42:47 +02:00
version="0.1",
author="Dylan Araps",
author_email="dylan.araps@gmail.com",
description="🎨 Generate and change colorschemes on the fly",
license="MIT",
url="https://github.com/dylanaraps/wal.py",
scripts=["wal"]
)