Skip to content

Commit

Permalink
exclude tests from package distribution (#604)
Browse files Browse the repository at this point in the history
* exclude tests from package distribution

* update changelog
  • Loading branch information
vincentsarago authored Aug 14, 2021
1 parent 74e1482 commit 6cbdd88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

### Removed

- Exclude `tests` from package distribution. This should make the package lighter ([#604](https://github.com/stac-utils/pystac/pull/604))

### Changed

- Enable [strict
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
author="stac-utils",
author_email="stac@radiant.earth",
url="https://github.com/stac-utils/pystac",
packages=find_packages(),
packages=find_packages(exclude=["tests*"]),
package_data={"": ["py.typed"]},
py_modules=[splitext(basename(path))[0] for path in glob("pystac/*.py")],
python_requires=">=3.7",
Expand Down

0 comments on commit 6cbdd88

Please sign in to comment.