-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 777 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (32 loc) · 777 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "etl-studio"
version = "0.1.0"
description = "Lightweight Streamlit platform for collaborative data workflows"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"streamlit>=1.38.0",
"pandas>=2.2.0",
"fastapi[standard]>=0.115.0",
"uvicorn[standard]>=0.32.0",
"psycopg2-binary>=2.9.11",
"python-dotenv>=1.2.1",
"SQLAlchemy>=2.0.44",
"scikit-learn>=1.3.0",
"numpy>=1.24.0",
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
"plotly>=5.14.0",
"mlflow>=2.9.0",
"groq>=0.4.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2.0",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["etl_studio*"]