File size: 473 Bytes
dbb04e4 | 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 | # Development Dependencies # Install with: pip install -r requirements-dev.txt # Code Formatting black>=23.0.0 # Import Sorting isort>=5.12.0 # Style Guide Enforcement flake8>=6.0.0 # Static Type Checking mypy>=1.0.0 # Testing pytest>=7.0.0 pytest-cov>=4.0.0 pytest-asyncio>=0.21.0 # Security Scanning pip-audit>=2.6.0 bandit>=1.7.0 # Documentation sphinx>=7.0.0 sphinx-rtd-theme>=1.3.0 # Pre-commit hooks (optional) pre-commit>=3.0.0 |