General: Fix pywal error.

This commit is contained in:
Dylan Araps 2017-06-27 10:33:30 +10:00
parent ae769c2401
commit b8f1e73e11
2 changed files with 4 additions and 6 deletions

View File

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

View File

@ -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"
)