30 lines
451 B
Plaintext
30 lines
451 B
Plaintext
# Include production requirements
|
|
-r requirements.txt
|
|
|
|
# Testing
|
|
pytest>=7.4.0
|
|
pytest-cov>=4.1.0
|
|
pytest-mock>=3.11.0
|
|
pytest-asyncio>=0.21.0
|
|
|
|
# Linting and formatting
|
|
black>=23.7.0
|
|
flake8>=6.1.0
|
|
isort>=5.12.0
|
|
mypy>=1.5.0
|
|
|
|
# Type stubs
|
|
types-pyyaml>=6.0.12
|
|
# Note: python-dotenv includes type hints, no separate types package needed
|
|
|
|
# Pre-commit hooks
|
|
pre-commit>=3.4.0
|
|
|
|
# Documentation
|
|
sphinx>=7.1.0
|
|
sphinx-rtd-theme>=1.3.0
|
|
|
|
# Security
|
|
bandit>=1.7.5
|
|
|