-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
49 lines (39 loc) · 1.54 KB
/
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
43
44
45
46
47
48
49
[build-system]
requires = [ "setuptools>=61.2",]
build-backend = "setuptools.build_meta"
[project]
name = "pdemtools"
dynamic = ["version"]
description = "Conveniently search, download, and preprocess ArcticDEM and REMA products."
keywords = [ "geospatial", "elevation", "arcticdem", "rema", "dem",]
classifiers = [ "Intended Audience :: Science/Research", "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: GIS", "Topic :: Scientific/Engineering :: Image Processing",]
requires-python = ">=3.10"
dependencies = ["rioxarray", "rasterio", "geopandas", "pandas", "shapely", "numpy", "GDAL", "opencv-python", "scipy", "numba", "pyarrow", "fiona"] # GDAL
[[project.authors]]
name = "Tom Chudley"
email = "[email protected]"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
text = "MIT"
[project.urls]
Homepage = "https://github.com/trchudley/pdemtools"
Documentation = "https://pdemtools.readthedocs.io/"
Repository = "https://github.com/trchudley/pdemtools"
Issues = "https://github.com/trchudley/pdemtools/issues"
[tool.setuptools.dynamic]
version = {attr = "pdemtools.__version__"}
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"pdemtools.mosaic_index" = [ "*.gpkg",]
"pdemtools.test_data" = [ "*.parquet",]
[tool.coverage.run]
omit = [
"config.py",
"config-3.py",
"config-3.12.py",
]