-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.51 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
# pyproject.toml
# This file is for packaging `culvert-toolkit` for distribution as a package and for use in ArcGIS Pro.
# References:
# * https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/#
[build-system]
requires = ["setuptools>=61.0"] #,"setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "culvert-toolkit"
version = "0.2.2"
authors = [
{name = "CivicMapper", email = "[email protected]"},
{name = "Christian Gass", email = "[email protected]"}
]
description = "A geospatial data-powered TR-55 model for modeling culvert capacity"
readme = "README.md"
keywords = ["ArcGIS Pro 3.0", "GIS", "spatial", "modeling", "analysis", "stormwater", "culverts", "watershed", "basin", "TR-55", "peak flow"]
license = {text = "Apache 2.0"}
requires-python = ">=3.9, <4"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.9",
"Private :: Do Not Upload"
]
dependencies = [
"codetiming",
"pint",
"click",
"tqdm",
"requests",
"petl",
"marshmallow",
"marshmallow-dataclass[union]",
]
[project.urls]
"Homepage" = "https://github.com/civicmapper/culvert-toolkit"
"Bug Tracker" = "https://github.com/civicmapper/culvert-toolkit/issues"
# [tool.setuptools]
# package-dir = [{.="src"}]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
drainit = ["esri/toolboxes/*", "esri/arcpy/*", "esri/help/gp/*", "esri/help/gp/toolboxes/*", "esri/help/gp/messages/*"]