-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.39 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (41 loc) · 1.39 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
[build-system]
requires = ["setuptools>=68.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "iddx-core"
version = "0.4.2"
description = "Pure-Python toolkit for reading, writing, and automating Autodesk InfoDrainage .iddx project files and SWMM results."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Autodesk Water Solutions Engineering"},
]
keywords = [
"infodrainage", "drainage", "stormwater", "swmm",
"hydraulics", "hydrology", "iddx", "autodesk",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Hydrology",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
[project.optional-dependencies]
plotting = ["matplotlib>=3.7"]
simulation = ["pyswmm>=2.0"]
network = ["networkx>=3.0"]
all = ["matplotlib>=3.7", "pyswmm>=2.0", "networkx>=3.0"]
[project.scripts]
iddx = "iddx_core.cli:main"
[project.urls]
Repository = "https://github.com/jcholly/InfoDrainage-Python-Package"
[tool.setuptools.packages.find]
include = ["iddx_core*"]