-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements-dev.txt
More file actions
36 lines (31 loc) · 847 Bytes
/
requirements-dev.txt
File metadata and controls
36 lines (31 loc) · 847 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
# Development dependencies for CuePoint
# Install with: pip install -r requirements-dev.txt
# Testing framework
pytest==9.0.2
hypothesis==6.98.0 # Property-based tests (Design 3.15)
pytest-qt==4.5.0
pytest-cov==7.0.0
pytest-mock==3.15.1
pytest-asyncio==1.3.0
pytest-timeout==2.4.0
pytest-xdist==3.8.0 # For parallel test execution
pytest-benchmark==5.2.3 # For performance benchmarks (Step 7.3)
# Coverage reporting
coverage==7.13.1
# Type stubs for mypy
types-requests
types-psutil
types-PyYAML
types-tqdm
# Code quality
ruff>=0.8.0
black==26.3.1
pylint==4.0.4
mypy==1.19.1
isort==7.0.0
flake8==7.3.0
pre-commit==4.5.1
radon==6.0.1 # For complexity metrics (5.7.18)
# Build tools
pyinstaller==6.17.0 # For building executables (Python 3.13-compatible)
pip-tools # For generate_requirements_hashes.py (Design 2.8, pip --require-hashes)