aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorDylan Araps <[email protected]>2017-06-20 20:42:47 +1000
committerDylan Araps <[email protected]>2017-06-20 20:42:47 +1000
commit9adecb1bc31c40e6173927342bf3209d164b0fa6 (patch)
treebb5e0f3a208457e243762cdd26c7901c24b58e9a /setup.py
parentOptimization: Use faster for loops (diff)
downloadpywal-9adecb1bc31c40e6173927342bf3209d164b0fa6.tar.xz
pywal-9adecb1bc31c40e6173927342bf3209d164b0fa6.zip
General: Add setup.py
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..c6844ca
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,13 @@
+"""wal - setup.py"""
+from setuptools import setup
+
+setup(
+ name="wal",
+ 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"]
+)