forked from sdmlua/FIMserv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (60 loc) · 1.71 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (60 loc) · 1.71 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "fimserve"
version = "0.1.85"
description = "Framework which is developed with the purpose of quickly generating Flood Inundation Maps (FIM) for emergency response and risk assessment. It is developed under Surface Dynamics Modeling Lab (SDML)."
authors = [{ name = "Supath Dhital", email = "[email protected]" }]
maintainers = [{ name = "Supath Dhital", email = "[email protected]" }]
license = { text = "GPL-3.0" }
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"pytest>=8.3,<8.4",
"teehr==0.4.1",
"geemap>=0.35.1",
"pyarrow>=15.0.2",
"utils>=1.0.2",
"netcdf4==1.6.5",
"matplotlib>=3.9.2",
"awscli==1.34.23",
"botocore==1.35.23",
"numba>=0.60.0",
"bottleneck>=1.3.6",
"localtileserver>=0.10.5",
"tqdm>=4.67.0",
"scipy>=1.14.1",
"aiohttp==3.10.8",
"scikit-learn>=1.5.2",
"tabulate>=0.9.0",
"nodejs-bin>=18.4.0a4",
"ipykernel>=6.17.1",
"numpy==1.26.4",
"beautifulsoup4>=4.12.3",
"python-dotenv>=1.0.1",
"jupyter>=1.1.1",
"notebook>=6.5.7",
"geocube<=0.7.1",
"geopandas>=0.14.3",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3,<8.4",
"sphinx<7.0",
"sphinx-autobuild>=2024.10.3",
"black"
]
[project.urls]
Homepage = "https://github.com/sdmlua/FIMserv"
Repository = "https://github.com/sdmlua/FIMserv"
Issues = "https://github.com/sdmlua/FIMserv/issues"
[build-system]
requires = ["setuptools>=69.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]