Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update package metadata #409

Merged
merged 5 commits into from
Jun 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

### Removed
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",
)