-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
32 lines (28 loc) · 980 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pySWATPlus"
description = "Running and calibrating default or custom SWAT+ projects with Python"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.6"
license = {text = "GPL-3.0"}
authors = [
{ name = "Joan Saló", email = "[email protected]" }
]
keywords = ["SWAT+", "hydrology", "calibration", "Python"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/swat-model/pySWATPlus"
Repository = "https://github.com/swat-model/pySWATPlus"
Issues = "https://github.com/swat-model/pySWATPlus/issues"
[tool.setuptools]
packages = ["pySWATPlus"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"