Skip to content

Commit

Permalink
Merge pull request #409 from duckontheweb/403-package-metadata
Browse files Browse the repository at this point in the history
Update package metadata
  • Loading branch information
Jon Duckworth authored Jun 7, 2021
2 parents b2153c8 + 8186f43 commit cdcfa12
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@

### Added

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

### Changed

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

### Fixed

- Fixed returned None by `EOExtension.get_bands` for asset without EO bands ([#406](https://github.com/stac-utils/pystac/pull/406))
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

project = 'pystac'
copyright = '2019, Azavea'
author = 'Azavea'
author = 'stac-utils'

# The short X.Y version
version = __version__
Expand Down Expand Up @@ -60,7 +60,7 @@
]

extlinks = {
'tutorial': ('https://github.com/azavea/pystac/'
'tutorial': ('https://github.com/stac-utils/pystac/'
'tree/{}/docs/tutorials/%s'.format(git_branch), 'tutorial'),
'stac-spec': ('https://github.com/radiantearth/stac-spec/tree/'
'v{}/%s'.format(STACVersion.DEFAULT_STAC_VERSION), 'path'),
Expand Down Expand Up @@ -162,7 +162,7 @@
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'pystac.tex', 'pystac Documentation',
'Azavea', 'manual'),
'stac-utils', 'manual'),
]


Expand Down
15 changes: 12 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,20 @@
),
long_description=readme,
long_description_content_type="text/markdown",
author="Azavea",
author_email="info@azavea.com",
url="https://github.com/stac-utils/pystac.git",
author="stac-utils",
author_email="stac@radiant.earth",
url="https://github.com/stac-utils/pystac",
packages=find_packages(),
py_modules=[splitext(basename(path))[0] for path in glob("pystac/*.py")],
include_package_data=False,
python_requires=">=3.6",
install_requires=[
"python-dateutil>=2.7.0",
'typing_extensions >= 3.7; python_version < "3.8"',
],
extras_require={"validation": ["jsonschema>=3.0"], "orjson": ["orjson>=3.5"]},
license="Apache Software License 2.0",
license_files=["LICENSE"],
zip_safe=False,
keywords=["pystac", "imagery", "raster", "catalog", "STAC"],
classifiers=[
Expand All @@ -40,5 +42,12 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
project_urls={
"Tracker": "https://github.com/stac-utils/pystac/issues",
"Documentation": "https://pystac.readthedocs.io/en/latest/",
"GitHub Discussions": (
"https://github.com/radiantearth/stac-spec/discussions/categories/pystac"
),
},
test_suite="tests",
)

0 comments on commit cdcfa12

Please sign in to comment.