-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (32 loc) · 1.24 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "water-benchmark-hub"
description = "WaterBenchmarkHub"
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"
]
keywords=["water", "networks", "benchmarks", "data"]
dynamic = ["version", "readme", "dependencies"]
[project.urls]
Homepage = "https://github.com/WaterFutures/WaterBenchmarkHub"
Documentation = "https://water-benchmark-hub.readthedocs.io/en/latest/"
Repository = "https://github.com/WaterFutures/WaterBenchmarkHub.git"
Issues = "https://github.com/WaterFutures/WaterBenchmarkHub/issues"
[tool.setuptools.dynamic]
version = {file = "src/water_benchmark_hub/VERSION"}
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = {file = "REQUIREMENTS.txt"}