We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74e1482 commit 6cbdd88Copy full SHA for 6cbdd88
CHANGELOG.md
@@ -6,6 +6,8 @@
6
7
### Removed
8
9
+- Exclude `tests` from package distribution. This should make the package lighter ([#604](https://github.com/stac-utils/pystac/pull/604))
10
+
11
### Changed
12
13
- Enable [strict
setup.py
@@ -19,7 +19,7 @@
19
author="stac-utils",
20
author_email="stac@radiant.earth",
21
url="https://github.com/stac-utils/pystac",
22
- packages=find_packages(),
+ packages=find_packages(exclude=["tests*"]),
23
package_data={"": ["py.typed"]},
24
py_modules=[splitext(basename(path))[0] for path in glob("pystac/*.py")],
25
python_requires=">=3.7",
0 commit comments