forked from WaterFutures/EPyT-Flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 1.41 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "epyt-flow"
description = "EPyT-Flow -- EPANET Python Toolkit - Flow"
authors = [
{name = "André Artelt", email = "[email protected]"},
{name = "Marios S. Kyriakou", email = "[email protected]"},
{name = "Stelios G. Vrachimis", email = "[email protected]"},
]
license = {text = "MIT License"}
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
keywords=["epanet", "water", "networks", "hydraulics", "quality", "simulations"]
dynamic = ["version", "readme", "dependencies"]
[project.urls]
Homepage = "https://github.com/WaterFutures/EPyT-Flow"
Documentation = "https://epyt-flow.readthedocs.io/en/stable/"
Repository = "https://github.com/WaterFutures/EPyT-Flow.git"
Issues = "https://github.com/WaterFutures/EPyT-Flow/issues"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = {attr = "epyt_flow.VERSION"}
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = {file = "REQUIREMENTS.txt"}