diff --git a/setup.cfg b/setup.cfg index c7c8d086098a74d736c7f39ef087999c963f22a2..cfc1dca3f3be56637f5acd9651026e2c92df6846 100644 --- a/setup.cfg +++ b/setup.cfg @@ -31,6 +31,12 @@ classifier = install_requires = psutil python_requires = !=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.* +packages = find: + +[options.packages.find] +exclude = + docs + tests [options.extras_require] HTTPJSONSource = requests diff --git a/setup.py b/setup.py index 94e41444d0095f3e01a0b10f6b1e6e9a8a96691a..905f3b03ad4ba9801a5b4dfd667665ab475ac131 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,5 @@ -from setuptools import setup, find_packages +from setuptools import setup from satella import __version__ -setup(packages=find_packages(include=['satella', 'satella.*']), - version=__version__) +setup(version=__version__)