Skip to content

Commit cdcfa12

Browse files
author
Jon Duckworth
authored
Merge pull request #409 from duckontheweb/403-package-metadata
Update package metadata
2 parents b2153c8 + 8186f43 commit cdcfa12

File tree

3 files changed

+21
-6
lines changed

3 files changed

+21
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@
44

55
### Added
66

7+
- License file included in distribution ([#409](https://github.com/stac-utils/pystac/pull/409))
8+
- Links to Issues, Discussions, and documentation sites ([#409](https://github.com/stac-utils/pystac/pull/409))
9+
- Python minimum version set to `>=3.6` ([#409](https://github.com/stac-utils/pystac/pull/409))
10+
711
### Changed
812

13+
- Package author to `stac-utils`, email to `stac@radiant.earth`, url to this repo ([#409](https://github.com/stac-utils/pystac/pull/409))
14+
915
### Fixed
1016

1117
- Fixed returned None by `EOExtension.get_bands` for asset without EO bands ([#406](https://github.com/stac-utils/pystac/pull/406))

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
project = 'pystac'
3434
copyright = '2019, Azavea'
35-
author = 'Azavea'
35+
author = 'stac-utils'
3636

3737
# The short X.Y version
3838
version = __version__
@@ -60,7 +60,7 @@
6060
]
6161

6262
extlinks = {
63-
'tutorial': ('https://github.com/azavea/pystac/'
63+
'tutorial': ('https://github.com/stac-utils/pystac/'
6464
'tree/{}/docs/tutorials/%s'.format(git_branch), 'tutorial'),
6565
'stac-spec': ('https://github.com/radiantearth/stac-spec/tree/'
6666
'v{}/%s'.format(STACVersion.DEFAULT_STAC_VERSION), 'path'),
@@ -162,7 +162,7 @@
162162
# author, documentclass [howto, manual, or own class]).
163163
latex_documents = [
164164
(master_doc, 'pystac.tex', 'pystac Documentation',
165-
'Azavea', 'manual'),
165+
'stac-utils', 'manual'),
166166
]
167167

168168

setup.py

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,20 @@
1616
),
1717
long_description=readme,
1818
long_description_content_type="text/markdown",
19-
author="Azavea",
20-
author_email="info@azavea.com",
21-
url="https://github.com/stac-utils/pystac.git",
19+
author="stac-utils",
20+
author_email="stac@radiant.earth",
21+
url="https://github.com/stac-utils/pystac",
2222
packages=find_packages(),
2323
py_modules=[splitext(basename(path))[0] for path in glob("pystac/*.py")],
2424
include_package_data=False,
25+
python_requires=">=3.6",
2526
install_requires=[
2627
"python-dateutil>=2.7.0",
2728
'typing_extensions >= 3.7; python_version < "3.8"',
2829
],
2930
extras_require={"validation": ["jsonschema>=3.0"], "orjson": ["orjson>=3.5"]},
3031
license="Apache Software License 2.0",
32+
license_files=["LICENSE"],
3133
zip_safe=False,
3234
keywords=["pystac", "imagery", "raster", "catalog", "STAC"],
3335
classifiers=[
@@ -40,5 +42,12 @@
4042
"Programming Language :: Python :: 3.7",
4143
"Programming Language :: Python :: 3.8",
4244
],
45+
project_urls={
46+
"Tracker": "https://github.com/stac-utils/pystac/issues",
47+
"Documentation": "https://pystac.readthedocs.io/en/latest/",
48+
"GitHub Discussions": (
49+
"https://github.com/radiantearth/stac-spec/discussions/categories/pystac"
50+
),
51+
},
4352
test_suite="tests",
4453
)

0 commit comments

Comments
 (0)