# Development dependencies for cite-agent

# Testing
pytest>=7.4.0
pytest-asyncio>=0.21.0
pytest-cov>=4.1.0
pytest-timeout>=2.1.0
pytest-xdist>=3.3.1  # Parallel test execution
hypothesis>=6.82.0    # Property-based testing

# Code quality
ruff>=0.0.285        # Fast linter
black>=23.7.0        # Code formatter
isort>=5.12.0        # Import sorter
mypy>=1.4.1          # Type checking

# Security
bandit>=1.7.5        # Security linter
safety>=2.3.5        # Dependency vulnerability scanner

# Coverage
coverage[toml]>=7.2.7

# Build
build>=0.10.0
twine>=4.0.2

# Documentation
sphinx>=7.1.0
sphinx-rtd-theme>=1.3.0
myst-parser>=2.0.0   # Markdown support for Sphinx

# Performance
py-spy>=0.3.14       # Profiler
memory-profiler>=0.61.0

# Utilities
ipython>=8.14.0      # Better REPL
pre-commit>=3.3.3    # Git hooks
