-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.24 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (51 loc) · 1.24 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
[project]
name = "neobank-product-analytics"
version = "0.1.0"
description = "A synthetic fintech customer growth and pricing intelligence platform covering dbt metrics, experimentation, geo incrementality, and decisioning."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"altair>=5.5.0",
"dbt-core>=1.10.0,<2",
"dbt-duckdb>=1.9.0,<2",
"duckdb>=1.3.0",
"faker>=37.0.0",
"fastapi>=0.136.3",
"lightgbm>=4.6.0",
"linearmodels>=6.0",
"marimo>=0.13.0",
"numpy>=2.2.0",
"optuna>=4.3.0",
"pandas>=2.2.0",
"plotly>=6.0.0",
"polars>=1.30.0",
"pyarrow>=20.0.0",
"scikit-learn>=1.6.0",
"scipy>=1.15.0",
"shap>=0.47.0",
"statsmodels>=0.14.0",
"streamlit>=1.45.0",
"uvicorn>=0.47.0",
]
[project.optional-dependencies]
gcp = [
"dbt-bigquery>=1.11.1,<2",
"google-cloud-bigquery>=3.38.0",
"google-cloud-storage>=2.4.0,<3.2",
]
[dependency-groups]
dev = [
"httpx>=0.28.1",
"pytest>=8.3.0",
"ruff>=0.11.0",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.ruff.lint.per-file-ignores]
"notebooks/*.py" = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]