diff --git a/MANIFEST.in b/MANIFEST.in index c9bcb0908..ddd093b5b 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,8 +6,9 @@ include README.rst graft datacube_ows/templates graft datacube_ows/sql -recursive-include tests * recursive-exclude * __pycache__ recursive-exclude * *.py[co] +prune integration_tests/ +prune tests/ recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif diff --git a/setup.py b/setup.py index cc2e5ab7c..46935b9d3 100644 --- a/setup.py +++ b/setup.py @@ -76,7 +76,7 @@ 'datacube-ows-cfg-parse=datacube_ows.cfg_parser:main' ] }, - packages=find_packages(), + packages=find_packages(exclude=["tests", "tests.cfg", "integration_tests", "integration_tests.cfg"]), include_package_data=True, install_requires=requirements, license="Apache Software License 2.0",