forked from WaterFutures/EPyT-Flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.53 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
[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 = "aartelt@techfak.uni-bielefeld.de"},
{name = "Marios S. Kyriakou", email = "kiriakou.marios@ucy.ac.cy"},
{name = "Stelios G. Vrachimis", email = "vrachimis.stelios@ucy.ac.cy"},
]
license = "MIT"
requires-python = ">=3.10, !=3.14.1"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
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"}