-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrequirements-dev.txt
More file actions
34 lines (26 loc) · 1.03 KB
/
requirements-dev.txt
File metadata and controls
34 lines (26 loc) · 1.03 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
# Development & Code Quality Tools
# Install with: pip install -r requirements-dev.txt
# Linting and formatting
ruff>=0.1.15 # Fast Python linter (replaces flake8, isort, pyupgrade)
black>=24.1.1 # Code formatter
isort>=5.13.2 # Import sorting (used in pre-commit)
pylint>=3.0.0 # Comprehensive linter
mypy>=1.8.0 # Static type checker
docformatter>=1.7.5 # Docstring formatter
# Markdown
markdownlint-cli2>=0.12.1 # Markdown linting and formatting
# Security
bandit[toml]>=1.7.6 # Security vulnerability scanner
# Code quality metrics
radon>=6.0.1 # Complexity analysis
vulture>=2.10 # Dead code finder
# Pre-commit hooks
pre-commit>=3.6.0 # Git hooks framework
# Testing
pytest>=7.4.0 # Testing framework
pytest-cov>=4.1.0 # Coverage plugin
pytest-mock>=3.12.0 # Mocking plugin
# Documentation
interrogate>=1.5.0 # Docstring coverage checker
# Utilities
ipython>=8.12.0 # Enhanced Python shell