-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 1.76 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (68 loc) · 1.76 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
75
76
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "singapore-eda"
version = "0.1.0"
description = "End-to-end EDA on Singapore HDB resale data with Streamlit and Quarto report"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Eugene Sim" }]
dependencies = [
"pandas>=2.2,<3",
"numpy>=1.26,<3",
"plotly>=5.24,<6",
"streamlit>=1.40,<2",
"streamlit-folium>=0.24,<1",
"folium>=0.18,<1",
"scipy>=1.14,<2",
"statsmodels>=0.14,<1",
"pyarrow>=18,<20",
"requests>=2.32,<3",
"networkx>=3.2,<4",
"scikit-learn>=1.5,<1.8",
"xgboost>=2.1,<3",
"lightgbm>=4.6,<5",
"shap>=0.46,<1",
"joblib>=1.4,<2",
"psycopg[binary]>=3.2,<4",
"mlflow>=3.11.1,<4",
"deepchecks>=0.19,<1",
"pyyaml>=6.0,<7",
"setuptools>=68,<81",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.3,<10",
"ruff>=0.8,<1",
"ipykernel>=6.29,<7",
]
api = [
"fastapi>=0.115,<0.120",
"uvicorn[standard]>=0.32,<0.35",
]
geo = [
"geopandas>=1.1,<2",
"shapely>=2.0,<3",
]
[project.scripts]
hdb-download = "singapore_eda.download_data:main"
hdb-rent-download = "singapore_eda.rent_ingest:main"
hdb-bto-download = "singapore_eda.bto_ingest:main"
hdb-resale-merge = "singapore_eda.merge_resale:main"
singapore-eda-health = "singapore_eda.health_server:main"
hdb-forecaster-v1-build = "singapore_eda.forecaster_build:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.ruff.lint.per-file-ignores]
"streamlit_app.py" = ["E402"]
"pages/*.py" = ["E402"]