-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrequirements.txt
More file actions
41 lines (31 loc) · 753 Bytes
/
Copy pathrequirements.txt
File metadata and controls
41 lines (31 loc) · 753 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
38
39
40
# Core Dependencies
python>=3.8
# Web Frameworks
flask>=2.2.5
fastapi>=0.103.1
uvicorn[standard]>=0.23.2 # ASGI server for FastAPI
# Database & ORM
sqlalchemy>=2.0.20
pydantic>=2.3.0 # Data validation for FastAPI
# Testing
pytest>=7.4.2
pytest-cov>=4.1.0 # Test coverage reports
httpx>=0.24.1 # Async HTTP client for testing FastAPI
# Machine Learning (for ml_pipeline.py)
scikit-learn>=1.3.0
pandas>=2.1.0
numpy>=1.24.4
# GUI Development (for gui_app.py)
tkinter # Built-in with Python, no need to install separately
pyqt5>=5.15.9
# Game Development (for game_dev.py)
pygame>=2.1.3
# Documentation & Notebooks
jupyterlab>=4.0.5
notebook>=7.0.2
# Linting & Code Quality
black>=23.7.0
flake8>=6.1.0
isort>=5.12.0
# CI/CD
pre-commit>=3.4.0