# Sigil Pipeline - Development Dependencies
#
# NOTE: This file mirrors pyproject.toml [project.optional-dependencies.dev]
# for compatibility with tools that don't support PEP 517/518.
# The source of truth is pyproject.toml.
#
# Preferred installation:
#   pip install -e ".[dev]"
#
# Legacy installation:
#   pip install -r requirements-dev.txt

# Include production dependencies
-r requirements.txt

# =============================================================================
# TESTING
# =============================================================================
pytest>=7.4.0,<8.0.0
pytest-asyncio>=0.21.0,<1.0.0
pytest-cov>=4.1.0,<5.0.0
pytest-mock>=3.11.0,<4.0.0
pytest-benchmark>=4.0.0,<5.0.0

# Property-based testing
hypothesis>=6.92.0,<7.0.0

# =============================================================================
# CODE QUALITY & FORMATTING
# =============================================================================
black>=25.0.0
isort>=5.12.0,<6.0.0
flake8>=6.0.0,<7.0.0

# =============================================================================
# TYPE CHECKING
# =============================================================================
pyright>=1.1.350,<2.0.0

# Type stubs
types-toml>=0.10.8
types-tqdm>=4.67.0
types-aiofiles>=24.1.0
types-cachetools>=6.1.0
pandas-stubs>=2.3.0

# =============================================================================
# DOCUMENTATION
# =============================================================================
sphinx>=7.1.0,<8.0.0
sphinx-rtd-theme>=1.3.0,<2.0.0
myst-parser>=2.0.0,<3.0.0

# =============================================================================
# BUILD & PACKAGING
# =============================================================================
build>=1.0.0,<2.0.0
twine>=4.0.0,<5.0.0
pre-commit>=3.3.0,<4.0.0

# =============================================================================
# MUTATION TESTING
# =============================================================================
mutmut>=3.0.0,<4.0.0

# =============================================================================
# LOAD TESTING
# =============================================================================
locust>=2.20.0,<3.0.0
