# Development dependencies for plot2llm
# This includes testing, linting, and development tools

# Base requirements
-r requirements.txt

# Testing framework
pytest>=7.0.0
pytest-cov>=4.0.0
pytest-mock>=3.10.0
pytest-xdist>=3.0.0  # For parallel test execution

# Code quality
black>=22.0.0
flake8>=5.0.0
isort>=5.10.0
mypy>=1.0.0
ruff>=0.0.200

# Pre-commit hooks
pre-commit>=2.20.0

# Additional testing utilities
tox>=4.0.0  # For testing multiple Python versions
coverage>=7.0.0  # Coverage reporting
freezegun>=1.2.0  # For date/time testing
factory-boy>=3.2.0  # Test data generation

# Documentation
sphinx>=5.0.0
sphinx-rtd-theme>=1.2.0

# Jupyter notebooks for examples
jupyter>=1.0.0
ipykernel>=6.0.0 