-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.19 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
[project]
name = "threedi-urban-eia-nl"
dynamic = ["version"]
description = "3Di batch calculations"
readme = "README.rst"
license = {text = "MIT"}
authors = [
{ name = "Daan van Ingen", email = "[email protected]" },
]
keywords = []
classifiers = [
"Framework :: Django",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"click",
"netCDF4",
"pandas",
"threedi-api-client>=4.0.0",
"threedigrid>=1.0.16",
"numpy<2",
"SQLAlchemy",
]
[project.scripts]
process-rain-series-results = "threedi_urban_eia_nl.process_results:process_results"
run-rain-series-simulations = "threedi_urban_eia_nl.rain_series_simulations:create_rain_series_simulations"
[project.urls]
Repository = "https://github.com/nens/threedi-urban-eia-nl"
Changelog = "https://github.com/nens/threedi-urban-eia-nl/blob/master/CHANGES.rst"
[tool.setuptools]
packages = ["threedi_urban_eia_nl"]
[tool.setuptools.dynamic]
version = {attr = "threedi_urban_eia_nl.__version__"}
[tool.zest-releaser]
release = false
python-file-with-version = "threedi_urban_eia_nl/__init__.py"
[tool.isort]
profile = "black"
force_alphabetical_sort_within_sections = true