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

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ pywal.egg-info/*
*.pyc
subprocess
re
build/*

View File

@ -4,7 +4,7 @@ Global Constants.
import pathlib
__version__ = "0.2.3"
__version__ = "0.2.4"
# Internal variables.

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