-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.4 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
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "fiat_toolbox"
description = "A software package support ystem which can be used to assess the benefits and costs of flood resilience measures"
readme = "README.md"
authors = [
{ name = "Frederique de Groen", email = "[email protected]" },
{ name = "Daley Adrichem", email = "[email protected]" },
{ name = "Panos Athanasiou", email = "[email protected]" },
{ name = "Sarwan Peiter", email = "[email protected]" },
{name = "Mario Fuentes Monjaraz", email = "[email protected]"},
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Topic :: Scientific/Engineering :: Hydrology",
]
requires-python = ">=3.8"
dependencies = [
"numpy",
"pandas",
"tomli",
"plotly",
"parse",
"geopandas",
"duckdb",
"validators",
]
dynamic = ["version"]
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic]
version = { attr = "fiat_toolbox.__version__" }
[tool.setuptools.packages.find]
include = ["fiat_toolbox", "fiat_toolbox.*"]
[tool.setuptools.package-data]
"fiat_toolbox" = ["py.typed"]
[project.urls]
Source = "https://github.com/Deltares/fiat_toolbox"
[tool.ruff]
select = ["E", "F", "NPY", "PD", "C4", "I"]
ignore = ["E501", "PD901"]