-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 2.04 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (64 loc) · 2.04 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
67
68
69
70
71
72
73
[tool.poetry]
name = "priority_flow"
version = "1.0.1"
description = "Python toolkit for topographic processing for hydrologic models - a port of the R PriorityFlow package"
authors = ["Laura E. Condon and Reed M. Maxwell"]
license = "GNU General Public License v3.0"
readme = "README.md"
homepage = "https://priority-flow.readthedocs.io/en/latest/"
repository = "https://github.com/hydroframe/priority_flow"
keywords = ["hydrology", "topography", "DEM", "flow", "watershed", "priority-flood"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Hydrology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [{include = "priority_flow", from = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
numpy = ">=2.3.2"
scipy = ">=1.16.0"
pandas = ">=2.3.1"
matplotlib = ">=3.10.5"
rasterio = ">=1.4.3"
scikit-image = ">=0.25.2"
pftools = ">=1.3.14"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.4.1"
pytest-cov = ">=6.2.1"
black = ">=25.1.0"
flake8 = ">=7.3.0"
mypy = ">=1.17.1"
pre-commit = ">=4.3.0"
[tool.poetry.group.docs.dependencies]
jupyter = ">=1.0.0"
matplotlib = ">=3.7.2"
sphinx-autoapi = ">=3.0.0"
sphinx-rtd-theme = ">=1.3.0"
sphinx = "6.2.1"
myst-nb = {git = "https://github.com/executablebooks/MyST-NB.git"}
[tool.semantic_release]
version_toml = [
"pyproject.toml:tool.poetry.version",
]
branch = "main"
changelog_file = "CHANGELOG.md"
build_command = "pip install poetry && poetry build"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py311', 'py312', 'py313']
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
#[tool.pytest.ini_options]
#testpaths = ["tests"]
#python_files = ["test_*.py", "*_test.py"]
#addopts = "-v --cov=priority_flow --cov-report=html --cov-report=term-missing"