-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
63 lines (54 loc) · 1.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "GeoAnalyze"
description = "A Python package designed to provide toolkits for geospatial analysis."
authors = [
{ name="Debasish Pal", email="[email protected]" },
]
dependencies = [
"geopandas",
"rasterio",
"fiona",
"pyflwdir"
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Hydrology"
]
dynamic = ["version"]
keywords = [
"Watershed",
"Delineation",
"Geoprocessing",
"raster",
"shapefile"
]
[project.urls]
"Homepage" = "https://github.com/debpal/GeoAnalyze"
"Documentation" = "http://GeoAnalyze.readthedocs.io/"
[tool.setuptools.dynamic]
version = {attr = "GeoAnalyze.__version__"}
[tool.pytest.ini_options]
addopts = "-rA -Werror --cov=GeoAnalyze --cov-report=html:cov_GeoAnalyze --cov-report=term -s"
testpaths = [
"tests"
]
[tool.mypy]
files = [
"GeoAnalyze"
]
ignore_missing_imports = true
strict = true