-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1.01 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
[project]
name = "based-api"
version = "2.0.0"
description = "Boost-Assisted Stream Estimator for Depth (BASED) — predicts bankfull channel depth from discharge, width, and slope."
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Jake Gearon", email = "jake.gearon@gmail.com" }]
dependencies = [
"xgboost>=2.1.1",
"scikit-learn>=1.5.2",
"pandas>=2.2.3",
"numpy>=1.24.0",
"streamlit>=1.54.0",
"matplotlib>=3.9.2",
"seaborn>=0.13.2",
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
"optuna>=4.0.0",
"openpyxl>=3.1.0",
"tornado>=6.5.5",
"Pillow>=12.2.0",
"requests>=2.33.0",
"pyproj>=3.6.0",
]
[project.scripts]
based-api = "uvicorn:main"
[tool.uv]
dev-dependencies = [
"scipy>=1.11.0",
"requests>=2.33.0",
"pynhd>=0.18.0",
]
# Minimum versions for transitive deps with known CVEs
constraint-dependencies = [
"aiohttp>=3.13.4",
"lxml>=6.1.0",
"Mako>=1.3.11",
# gitpython>=3.1.47 — blocked by 7-day quarantine until 2026-04-29
]