-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.37 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "epyt-control"
description = "EPyT-Control -- EPANET Python Toolkit - Control"
authors = [
{name = "André Artelt", 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",
"Programming Language :: Python :: 3.13"
]
keywords=["epanet", "water", "networks", "hydraulics", "quality", "simulations", "control", "reinforcement learning"]
dynamic = ["version", "readme", "dependencies"]
[project.urls]
Homepage = "https://github.com/WaterFutures/EPyT-Control"
Documentation = "https://epyt-control.readthedocs.io/en/stable/"
Repository = "https://github.com/WaterFutures/EPyT-Control.git"
Issues = "https://github.com/WaterFutures/EPyT-Control/issues"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = {attr = "epyt_control.VERSION"}
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = {file = "REQUIREMENTS.txt"}