-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
37 lines (30 loc) · 873 Bytes
/
Pipfile
File metadata and controls
37 lines (30 loc) · 873 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
36
37
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
# Core Dependencies - Production
psutil = ">=5.9.0,<6.0"
pyyaml = ">=6.0,<7.0"
requests = ">=2.28.0,<3.0"
# Optional: Advanced Features
pyarrow = {version = ">=10.0,<15.0", optional = true}
scikit-learn = {version = ">=0.24,<2.0", optional = true}
# Dashboard (Optional)
fastapi = {version = "==0.104.1", optional = true}
uvicorn = {version = ">=0.24.0,<1.0", optional = true, extras = ["standard"]}
python-multipart = {version = "==0.0.6", optional = true}
websockets = {version = "==12.0", optional = true}
[dev-packages]
# Testing
pytest = ">=7.0.0,<8.0"
pytest-cov = ">=4.0.0,<5.0"
# Code Quality
black = ">=22.0.0,<24.0"
flake8 = ">=4.0.0,<6.0"
mypy = ">=0.900,<2.0"
# Documentation
mkdocs = ">=1.4.0,<2.0"
mkdocs-material = ">=9.0.0,<10.0"
[requires]
python_version = "3.8"