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 *.pyc
subprocess subprocess
re re
build/*

View File

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

View File

@ -1,5 +1,5 @@
"""wal - setup.py""" """wal - setup.py"""
from setuptools import setup, find_packages from setuptools import setup
import pywal import pywal
@ -31,7 +31,7 @@ setup(
"Operating System :: POSIX :: Linux", "Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
], ],
packages=find_packages(), packages=["pywal"],
entry_points={ entry_points={
"console_scripts": ["wal=pywal.__main__:main"] "console_scripts": ["wal=pywal.__main__:main"]
}, },