Skip to content

Commit

Permalink
update the packaging metadata (#54)
Browse files Browse the repository at this point in the history
* explicitly add `numpy` to the dependencies

* fix the extlinks url

* update the changelog

* add more project urls

* add trove classifiers

* add keywords

* stop omitting the test files

This makes it easier to identify dead test code
  • Loading branch information
keewis committed Aug 28, 2023
1 parent 1a0308f commit 6f96fd8
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 5 deletions.
3 changes: 3 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## 2023.08.1 (_unreleased_)

- add documentation (:pull:`51`)
- expose the script (:pull:`53`)

## 2023.08.0 (25 Aug 2023)

Initial release.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
]

extlinks = {
"issue": ("https://github.com/umr-lops/xarray-alos2/issues/%s", "GH%s"),
"pull": ("https://github.com/umr-lops/xarray-alos2/pull/%s", "PR%s"),
"issue": ("https://github.com/umr-lops/xarray-ceos-alos2/issues/%s", "GH%s"),
"pull": ("https://github.com/umr-lops/xarray-ceos-alos2/pull/%s", "PR%s"),
}

# Add any paths that contain templates here, relative to this directory.
Expand Down
28 changes: 25 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,39 @@ dependencies = [
"python-dateutil",
"xarray",
"xarray-datatree",
"numpy",
"construct>=2.10",
"fsspec",
"exceptiongroup; python_version < '3.11'",
]
keywords = [
"xarray",
"earth-observation",
"remote-sensing",
"satellite-imagery",
"ceos",
"alos2",
"sar",
"synthetic-aperture-radar",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]

[project.urls]
homepage = "https://xarray-ceos-alos2.readthedocs.io"
documentation = "https://xarray-ceos-alos2.readthedocs.io"
repository = "https://github.com/umr-lops/xarray-ceos-alos2"
changelog = "https://xarray-ceos-alos2.readthedocs.io/en/latest/changelog.html"

[project.scripts]
ceos-alos2-create-cache = "ceos_alos2.sar_image.cli:main"
Expand All @@ -42,9 +67,6 @@ known_first_party = "ceos_alos2"
line-length = 100

[tool.coverage.run]
omit = [
"*/ceos_alos2/tests/*",
]
source = ["ceos_alos2"]
branch = true

Expand Down

0 comments on commit 6f96fd8

Please sign in to comment.