generated from eWaterCycle/ewatercycle-hype
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (36 loc) · 1.32 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
40
41
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/ewatercycle_lisflood/__init__.py"
[project]
name = "ewatercycle-lisflood"
description = "eWaterCycle plugin for LISFLOOD hydrological model"
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Bart Schilperoort, Peter Kalverla, Stefan Verhoeven", email = "[email protected]" },
]
keywords = ["ewatercycle", "hydrology"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
]
# Include here only the dependencies for the eWaterCycle wrapped model
dependencies = [
"ewatercycle>=2.3.1",
]
dynamic = ["version"]
# This registers the plugin such that it is discoverable by eWaterCycle
[project.entry-points."ewatercycle.models"]
Lisflood = "ewatercycle_lisflood.model:Lisflood"
[project.entry-points."ewatercycle.forcings"]
LisfloodForcing = "ewatercycle_lisflood.forcing:LisfloodForcing"
[project.entry-points."ewatercycle.parameter_sets"]
lisflood_fraser = "ewatercycle_lisflood.parameter_sets:lisflood_fraser"
[project.urls]
homepage = "https://github.com/eWaterCycle/ewatercycle-lisflood/"