-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrequirements-dev.txt
More file actions
108 lines (92 loc) · 1.86 KB
/
requirements-dev.txt
File metadata and controls
108 lines (92 loc) · 1.86 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# FormalVerifML Development Requirements
# This file contains all dependencies needed for development, testing, and documentation
# Core ML and Scientific Computing
torch>=2.0.0
torchvision>=0.15.0
torchaudio>=2.0.0
transformers>=4.30.0
numpy>=1.24.0
scipy>=1.10.0
scikit-learn>=1.3.0
pandas>=2.0.0
# Web Framework and Visualization
flask>=2.3.0
flask-cors>=4.0.0
graphviz>=0.20.0
matplotlib>=3.7.0
seaborn>=0.12.0
plotly>=5.15.0
# Testing and Quality Assurance
pytest>=7.4.0
pytest-cov>=4.1.0
pytest-benchmark>=4.0.0
pytest-mock>=3.11.0
pytest-asyncio>=0.21.0
hypothesis>=6.75.0
coverage>=7.2.0
# Code Quality and Linting
black>=23.7.0
pylint>=2.17.0
flake8>=6.0.0
mypy>=1.5.0
isort>=5.12.0
bandit>=1.7.0
pre-commit>=3.3.0
# Documentation
sphinx>=7.1.0
sphinx-rtd-theme>=1.3.0
myst-parser>=2.0.0
autodoc>=0.5.0
sphinx-autodoc-typehints>=1.24.0
# Development Tools
jupyter>=1.0.0
ipython>=8.14.0
notebook>=7.0.0
jupyterlab>=4.0.0
tqdm>=4.65.0
rich>=13.4.0
click>=8.1.0
# Performance and Monitoring
psutil>=5.9.0
memory-profiler>=0.61.0
line-profiler>=4.1.0
py-spy>=0.3.14
# Security and Validation
cryptography>=41.0.0
bcrypt>=4.0.0
passlib>=1.7.4
pydantic>=2.0.0
jsonschema>=4.19.0
# API and Web Development
requests>=2.31.0
aiohttp>=3.8.0
fastapi>=0.100.0
uvicorn>=0.23.0
websockets>=11.0.0
# Data Processing
h5py>=3.9.0
tables>=3.8.0
pyarrow>=12.0.0
dask>=2023.7.0
# Machine Learning Extensions
optuna>=3.2.0
ray[tune]>=2.6.0
wandb>=0.15.0
mlflow>=2.6.0
tensorboard>=2.13.0
# Utilities
python-dotenv>=1.0.0
pyyaml>=6.0.0
toml>=0.10.0
configparser>=5.3.0
pathlib2>=2.3.7
# Version Control and CI/CD
gitpython>=3.1.0
semantic-version>=2.10.0
# Platform Specific (optional)
# For Windows development
pywin32>=306; sys_platform == "win32"
# For macOS development
pyobjc-framework-Cocoa>=10.0; sys_platform == "darwin"
# For Linux development
python-prctl>=1.7.0; sys_platform == "linux"