-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
83 lines (69 loc) · 1.89 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ripple1d"
version = "0.7.0"
description = "HEC-RAS model automation"
readme = "README.md"
maintainers = [
{ name = "Seth Lawler", email = "[email protected]" },
{ name = "Matt Deshotel", email = "[email protected]" },
{ name = "Max Kipp", email = "[email protected]" },
{ name = "Abdul Siddiqui", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"boto3==1.35.0",
"contextily==1.6.0",
"python-dotenv",
"flask==3.0.3",
"fiona==1.9.6",
"h5py==3.11.0",
"huey==2.5.1",
"geopandas==1.0.1",
"matplotlib==3.9.0",
"mypy_boto3_s3==1.34.120",
"numpy==2.0.1",
"psutil==6.0.0",
"pystac==1.10.0",
"pyarrow==16.1.0",
"rasterio==1.3.10",
"requests==2.32.3",
"shapely==2.0.5",
"pywin32==306"
]
[project.optional-dependencies]
dev = ["pre-commit", "ruff", "pytest", "pytest-cov"]
docs = ["sphinx", "numpydoc", "sphinx_rtd_theme", "sphinx_design", "pydata-sphinx-theme"]
[project.urls]
repository = "https://github.com/dewberry/ripple1d"
[project.scripts]
ripple1d = "ripple1d.api.manager:main"
[tool.pytest.ini_options]
pythonpath = "ripple1d"
testpaths = "tests"
[tool.ruff.lint]
select = ["D"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff]
line-length = 120
exclude = ["production"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["D"]
"docs/**" = ["D"]
[tool.setuptools.packages.find]
where = ["."]
include = ["ripple1d*"]
[tool.sphinx]
project = "ripple1d"
author = "Seth Lawler"