Skip to content

Commit 31c3a27

Browse files
authored
small fixes to the package metadata (#2)
* fix licenese trove classifier * use a fallback version
1 parent 3616f3a commit 31c3a27

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.setuptools_scm]
6+
fallback_version = "9999"
67

78
[tool.setuptools.packages.find]
89
include = [
@@ -26,7 +27,7 @@ keywords = ["DGGS", "xarray", "GIS"]
2627
readme = "Readme.md"
2728
classifiers = [
2829
"Intended Audience :: Science/Research",
29-
"License :: OSI Approved :: MIT License",
30+
"License :: OSI Approved :: Apache Software License",
3031
"Operating System :: OS Independent",
3132
"Programming Language :: Python :: 3",
3233
"Topic :: Scientific/Engineering :: GIS",

xdggs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
__version__ = version("xdggs")
99
except PackageNotFoundError: # noqa
1010
# package is not installed
11-
pass
11+
__version__ = "9999"
1212

1313
__all__ = ["__version__", "DGGSIndex", "HealpixIndex"]

0 commit comments

Comments
 (0)