-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.05 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
[tool.poetry]
name = "hf_hydrodata"
version = "1.3.21"
description = "hydroframe tools and utilities"
authors = ["William M. Hasling", "Laura Condon", "Reed Maxwell", "George Artavanis", "Amy M. Johnson", "Amy C. Defnet"]
license = "MIT"
readme = "README.md"
[package]
include = ["src/hf_hydrodata/model/*.csv"]
[tool.poetry.dependencies]
python = "^3.9"
numpy = ">=1.23.5"
xarray = ">=0.21.0"
netcdf4 = ">=1.6.0"
importlib-resources = ">=5.10.0"
pftools = ">=1.3.9"
pyproj = ">=3.5.0"
rioxarray = ">=0.13.4"
requests = ">=2.28.2"
scipy = ">=1.10.0"
dask = ">=2020.12.0"
pyshp = ">=2.3.1"
shapely = ">=2.0.2"
# rasterio = ">=1.3.9"
[tool.poetry.dev-dependencies]
sphinx = ">=6.1.3"
sphinx-rtd-theme = ">=1.2.0"
sphinxcontrib-napoleon = ">=0.7"
pytest-mock = ">=3.10.0"
pylint = ">=2.13.7"
black = ">=23.3.0"
twine = ">=4.0.2"
coverage = "^7.6.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"private_dataset: marks tests as using dataset(s) with restricted access levels",
]