-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
36 lines (31 loc) · 1.13 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "SWMM_xsections_shape_generator"
description = "US-EPA SWMM Cross-Section curve shape generator"
readme = { file = "README.md", content-type = "text/markdown" }
keywords = ["swmm", "environment", "civil_engineering"]
license = { text = "MIT" }
authors = [
{ name = "Markus Pichler", email = "[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research"
]
requires-python = ">=3.7"
dependencies = ["numpy"]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = { attr = "shape_generator.__version__" }
[project.urls]
Homepage = "https://github.com/MarkusPic/SWMM_xsections_shape_generator"
Documentation = "https://markuspic.github.io/SWMM_xsections_shape_generator/"
[project.optional-dependencies]
full = ["sympy", "scipy", "swmm-api>=0.3", "matplotlib", "ezdxf"]