-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (98 loc) · 2.59 KB
/
Copy pathpyproject.toml
File metadata and controls
109 lines (98 loc) · 2.59 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "swmmio"
dynamic = ["version"]
description = "Tools for interacting with, editing, and visualizing EPA SWMM5 models"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT License"}
authors = [
{name = "Adam Erispaha", email = "aerispaha@gmail.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = ["swmm", "stormwater", "modeling", "epa"]
dependencies = [
"Pillow>=6.2.0,<10.3.0; python_version<'3.10'",
"Pillow>=12.2.0; python_version>='3.10'",
"numpy>=1.16.4,<2.0",
"pandas>=0.24.2",
"pyshp>=2.1.0",
"geojson>=2.4.1",
"networkx>=2.3,<2.8.1; python_version<'3.8'",
"networkx>=2.3; python_version>='3.8'",
"pyyaml>=3.12",
"pyproj>=3.0.0",
"requests>=2.32.3",
"typing_extensions>=4.12.2",
"pyswmm>=1.2,<2.0",
]
[project.optional-dependencies]
graphics = [
"geopandas",
"matplotlib",
]
[project.urls]
Homepage = "https://github.com/pyswmm/swmmio"
Repository = "https://github.com/pyswmm/swmmio"
"Bug Tracker" = "https://github.com/pyswmm/swmmio/issues"
[project.scripts]
swmmio_run = "swmmio.run_models.run:run_simple"
[tool.hatch.version]
path = "swmmio/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["swmmio"]
[tool.hatch.build]
include = [
"swmmio/**/*.py",
"swmmio/run_models/inp_settings/*.txt",
"swmmio/reporting/basemaps/*.html",
"swmmio/graphics/fonts/*.ttf",
"swmmio/defs/*.json",
"swmmio/defs/*.yml",
"swmmio/tests/data/*.inp",
"swmmio/tests/data/*.rpt",
"swmmio/tests/data/*.csv",
"swmmio/tests/data/*.txt",
]
exclude = [
]
[tool.pytest.ini_options]
testpaths = ["swmmio/tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
markers = [
"uses_geopandas: marks tests that use Geopandas (deselect with '-m \"not uses_geopandas\"')",
"serial",
]
filterwarnings = [
"ignore:.*section not found in.*:UserWarning",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"geopandas",
"matplotlib",
"pyswmm>=1.2,<2.0",
"flake8>=7.3.0",
]
docs = [
"sphinx>=7.2.6",
"sphinx_design>=0.5.0",
"pydata-sphinx-theme>=0.15.2",
"sphinx_copybutton>=0.5.2",
"ipython>=8.18.1",
"myst-parser>=3.0.1",
"myst-nb>=1.1.2",
"numpydoc>=1.8.0",
]