-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (66 loc) · 1.47 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (66 loc) · 1.47 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
74
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "leadguard"
version = "0.1.0"
description = "Lead service line prioritization with calibrated uncertainty and equity accounting"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
dependencies = [
"polars>=1.0",
"pandas>=2.2",
"pyarrow>=16.0",
"xgboost>=2.1",
"scikit-learn>=1.5",
"optuna>=3.6",
"h3>=3.7",
"geopandas>=0.14",
"shapely>=2.0",
"mapie>=0.8",
"shap>=0.45",
"pandera>=0.19",
"fastapi>=0.111",
"uvicorn[standard]>=0.30",
"streamlit>=1.36",
"pydantic>=2.7",
"pydantic-settings>=2.3",
"pyyaml>=6.0",
"httpx>=0.27",
"requests>=2.32",
"matplotlib>=3.9",
"seaborn>=0.13",
"scipy>=1.13",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2",
"pytest-cov>=5.0",
"pytest-asyncio>=0.23",
"black>=24.4",
"ruff>=0.4",
"mypy>=1.10",
"pre-commit>=3.7",
"ipykernel>=6.29",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501", "N803", "N806"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-v --tb=short"