General: Remove find_packages

This commit is contained in:
Dylan Araps
2017-06-27 10:43:23 +10:00
parent b8f1e73e11
commit 277c27c98a
3 changed files with 4 additions and 3 deletions

View File

@ -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"]
},