-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
42 lines (35 loc) · 988 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "yirgacheffe"
version = "0.8.7"
description = "Abstraction of gdal datasets for doing basic math operations"
readme = "README.md"
authors = [{ name = "Michael Dales", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: ISC License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["gdal", "numpy", "math"]
dependencies = [
"numpy",
"gdal[numpy]",
"scikit-image"
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = ["mypy", "pylint", "pytest", "h3"]
[project.urls]
Homepage = "https://github.com/quantifyearth/yirgacheffe"
[project.scripts]
realpython = "reader.__main__:main"
[[tool.mypy.overrides]]
module = "osgeo.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "h3.*"
ignore_missing_imports = true