Exclude the tests directory from the list of packages in the call of find_packages.

This commit is contained in:
Laurent LAPORTE 2018-10-06 14:44:26 +02:00
parent 8c06f1e534
commit c06ee74072
2 changed files with 5 additions and 1 deletions

View file

@ -11,7 +11,7 @@ setuptools.setup(
description="{{ cookiecutter.package_description }}",
long_description=open('README.rst').read(),
packages=setuptools.find_packages(),
packages=setuptools.find_packages(exclude=('tests',)),
install_requires=[],