summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-06-27 10:33:30 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-06-27 10:33:30 +1000
commitb8f1e73e11125c1225100dabe38284c9e4284945 (patch)
treebee08753012639c2f1e4c274e0f2532918a41dc4 /setup.py
parentae769c2401976426c9923cdf397aea281029ef75 (diff)
General: Fix pywal error.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index 2b79661..3edbd53 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
"""wal - setup.py"""
-from setuptools import setup
+from setuptools import setup, find_packages
import pywal
@@ -31,11 +31,9 @@ setup(
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
],
- packages=['pywal'],
+ packages=find_packages(),
entry_points={
- "console_scripts": [
- "wal=pywal.__main__:main"
- ]
+ "console_scripts": ["wal=pywal.__main__:main"]
},
python_requires=">=3.6"
)