forked from fabm-model/fabm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (30 loc) · 1004 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
33
[build-system]
requires = ["setuptools >= 61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyfabm"
version = "2.1.4"
authors = [
{name = "Jorn Bruggeman", email = "[email protected]"},
{name = "Karsten Bolding", email = "[email protected]"}
]
description = "Python driver for FABM"
requires-python = ">=3.7"
dependencies = [
"numpy"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent"
]
[project.urls]
"Homepage" = "https://fabm.net"
"Documentation" = "https://fabm.net/python"
"Repository" = "https://fabm.net/code"
[project.scripts]
fabm_complete_yaml = "pyfabm.utils.fabm_complete_yaml:main"
fabm_configuration_gui = "pyfabm.utils.fabm_configuration_gui:main"
fabm_describe_model = "pyfabm.utils.fabm_describe_model:main"
fabm_evaluate = "pyfabm.utils.fabm_evaluate:main"
fabm_stress_test = "pyfabm.utils.fabm_stress_test:main"