-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrequirements-dev.txt
More file actions
195 lines (143 loc) · 4.53 KB
/
requirements-dev.txt
File metadata and controls
195 lines (143 loc) · 4.53 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
# CLF09 - Development Dependencies
# Install with: pip install -r requirements-dev.txt
# Include production dependencies
-r requirements.txt
# ============================================================================
# Testing
# ============================================================================
# Testing framework
pytest==7.4.4
pytest-cov==4.1.0
pytest-mock==3.12.0
pytest-asyncio==0.23.3
# Test data generation
faker==22.0.0
factory-boy==3.3.0
# Load testing
locust==2.20.0
# ============================================================================
# Code Quality
# ============================================================================
# Formatting
black==23.12.1
autopep8==2.0.4
# Linting
flake8==7.0.0
pylint==3.0.3
bandit==1.7.6 # Security linting
# Import sorting
isort==5.13.2
# Type checking
mypy==1.8.0
# Pre-commit hooks
pre-commit==3.6.0
# Complexity checking
radon==6.0.1
mccabe==0.7.0
# ============================================================================
# Documentation
# ============================================================================
# Documentation generation
sphinx==7.2.6
sphinx-rtd-theme==2.0.0
sphinx-autodoc-typehints==1.25.2
# Docstring coverage
interrogate==1.5.0
# Markdown
mkdocs==1.5.3
mkdocs-material==9.5.4
# API documentation
flasgger==0.9.7.1
# ============================================================================
# Development Tools
# ============================================================================
# Jupyter notebook support
jupyter==1.0.0
jupyterlab==4.0.10
notebook==7.0.6
# Interactive Python
ipython==8.19.0
ipdb==0.13.13
# Code profiling
line-profiler==4.1.1
memory-profiler==0.61.0
# Environment management
python-dotenv==1.0.0
# ============================================================================
# AWS Development
# ============================================================================
# AWS SAM CLI (install separately)
# aws-sam-cli==1.107.0
# LocalStack for local AWS testing
localstack==3.0.2
awscli-local==0.21
# ============================================================================
# Docker Development
# ============================================================================
# Docker SDK
docker==7.0.0
# ============================================================================
# Data Visualization
# ============================================================================
# Plotting
matplotlib==3.8.2
seaborn==0.13.1
plotly==5.18.0
# ============================================================================
# Notebook Extensions
# ============================================================================
# Progress bars in notebooks
ipywidgets==8.1.1
# ============================================================================
# Database (for experiment tracking)
# ============================================================================
# SQLite
sqlalchemy==2.0.25
# ============================================================================
# Miscellaneous Development Tools
# ============================================================================
# Debugging
pdbpp==0.10.3
# Code coverage reports
coverage[toml]==7.4.0
# Git hooks
gitpython==3.1.41
# Terminal output
rich==13.7.0
colorama==0.4.6
# File watching
watchdog==3.0.0
# ============================================================================
# Performance Testing
# ============================================================================
# Benchmarking
pytest-benchmark==4.0.0
# Profiling
py-spy==0.3.14
# ============================================================================
# Security Scanning
# ============================================================================
# Dependency scanning
safety==2.3.5
# License checking
pip-licenses==4.3.3
# ============================================================================
# CI/CD Tools
# ============================================================================
# Coverage reporting
codecov==2.1.13
# Static analysis
prospector==1.10.3
# ============================================================================
# ML Experiment Tracking (Optional)
# ============================================================================
# Experiment tracking
# mlflow==2.9.2
# wandb==0.16.2
# ============================================================================
# Type Stubs
# ============================================================================
# Type hints for libraries
types-requests==2.31.0.20240106
types-PyYAML==6.0.12.12
types-setuptools==69.0.0.20240115