Skip to content

Commit

Permalink
exclude tests dir from distribution (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Hamman authored Mar 3, 2020
1 parent f74a8f3 commit d71b2d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ include requirements.txt
include versioneer.py

recursive-include intake_stac *.py
prune intake_stac/tests
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
maintainer_email="[email protected]",
url="https://github.com/pangeo-data/intake-stac",
py_modules=["intake_stac"],
packages=find_packages(),
packages=find_packages(exclude=["*tests"]),
package_dir={"intake_stac": "intake_stac"},
include_package_data=True,
python_requires=PYTHON_REQUIRES,
Expand Down

0 comments on commit d71b2d2

Please sign in to comment.