-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from j9ac9k/fix-numpy-2
Address numpy 2.0+ issues and bump version
- Loading branch information
Showing
5 changed files
with
76 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,32 +5,28 @@ description = "A package for co-registering geospatial data" | |
readme = "readme.md" | ||
license = { text = "Apache-2.0" } | ||
authors = [ | ||
{ name = "Preston Hartzell", email = "[email protected]"}, | ||
{ name = "Preston Hartzell", email = "[email protected]" }, | ||
{ name = "Jesse Shanahan" }, | ||
{ name = "Bahirah Adewunmi" } | ||
] | ||
maintainers = [ | ||
{ name = "Ognyan Moore", email = "[email protected]" } | ||
{ name = "Bahirah Adewunmi" }, | ||
] | ||
maintainers = [{ name = "Ognyan Moore", email = "[email protected]" }] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Topic :: Scientific/Engineering :: GIS", | ||
"Topic :: Scientific/Engineering :: Image Processing" | ||
] | ||
dependencies = [ | ||
"typing-extensions" | ||
"Topic :: Scientific/Engineering :: Image Processing", | ||
] | ||
dependencies = ["typing-extensions"] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
homepage = "https://github.com/NCALM-UH/CODEM" | ||
repository = "https://github.com/NCALM-UH/CODEM" | ||
|
||
[tool.setuptools] | ||
package-dir = {"" = "src"} | ||
package-dir = { "" = "src" } | ||
zip-safe = false | ||
|
||
[tool.setuptools.dynamic] | ||
|
@@ -66,7 +62,8 @@ exclude = ''' | |
''' | ||
|
||
[tool.mypy] | ||
python_version = 3.9 | ||
plugins = 'numpy.typing.mypy_plugin' | ||
python_version = '3.9' | ||
warn_return_any = true | ||
disallow_untyped_defs = true | ||
disallow_untyped_calls = true | ||
|
@@ -108,6 +105,6 @@ module = [ | |
"skimage", | ||
"skimage.measure", | ||
"trimesh", | ||
"websocket" | ||
"websocket", | ||
] | ||
ignore_missing_imports = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters