summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-06-27 10:43:23 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-06-27 10:43:23 +1000
commit277c27c98a819c8e8de9dffde07192791a0d16d4 (patch)
tree412e0215e5dda680f8052e87d87292ffb56d26d4 /setup.py
parentb8f1e73e11125c1225100dabe38284c9e4284945 (diff)
General: Remove find_packages
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 3edbd53..d6a8017 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
"""wal - setup.py"""
-from setuptools import setup, find_packages
+from setuptools import setup
import pywal
@@ -31,7 +31,7 @@ setup(
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
],
- packages=find_packages(),
+ packages=["pywal"],
entry_points={
"console_scripts": ["wal=pywal.__main__:main"]
},