-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.25 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
[project]
name = "churnlabs"
version = "0.1.0"
description = "End-to-End Customer Churn Prediction & Retention System"
readme = "README.md"
requires-python = ">=3.11,<3.13"
# Main libraries required to run the project
dependencies = [
"fastapi>=0.128.1",
"joblib>=1.5.3",
"numpy>=2.4.2",
"pandas>=2.0.0,<3.0.0",
"pydantic>=2.12.5",
"pydantic-settings>=2.13.1",
"pyyaml>=6.0.3",
"scikit-learn>=1.8.0",
"uvicorn>=0.41.0",
"pyarrow>=14.0.0,<23",
"protobuf>=3.20.3,<4.0.0",
"setuptools<81",
"mlflow>=3.10.0",
"sqlalchemy>=2.0.48",
"psycopg2-binary>=2.9.11",
"python-dotenv>=1.2.2",
"huggingface-hub>=1.8.0",
]
# Extra libraries used only for development, not needed in production
# Install them with : uv sync --extra dev
[project.optional-dependencies]
dev = [
"jupyter>=1.1.1",
"lab>=8.8",
"matplotlib>=3.10.8",
"seaborn>=0.13.2",
"statsmodels>=0.14.6",
]
# Look for Python packages inside the "src" folder
[tool.setuptools.packages.find]
where = ["src"]
# This section defines which tool is used to build the project
# "setuptools" is the tool that turns the code into an installable Python package
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"