18 lines
437 B
Plaintext
18 lines
437 B
Plaintext
# StarPunk Development Dependencies
|
|
# Includes code quality and testing tools
|
|
|
|
# Include production dependencies
|
|
-r requirements.txt
|
|
|
|
# Testing
|
|
pytest-cov>=5.0.0 # Test coverage reporting
|
|
pytest-mock>=3.12.0 # Mocking for tests
|
|
|
|
# Code Quality
|
|
black>=24.0.0 # Code formatting
|
|
flake8>=7.0.0 # Linting
|
|
mypy>=1.8.0 # Type checking
|
|
|
|
# WSGI Server (for production-like testing)
|
|
gunicorn>=21.2.0
|