# Development dependencies for RyoFaker
# Install with: pip install -r dev-requirements.txt

# Testing
pytest>=7.4.0
pytest-cov>=4.1.0
pytest-xdist>=3.3.0        # Parallel test execution
pytest-mock>=3.11.0        # Mocking support
coverage>=7.3.0

# Code formatting and linting
black>=23.0.0              # Code formatter
isort>=5.12.0              # Import sorter
ruff>=0.1.0                # Fast Python linter
flake8>=6.1.0              # Legacy linter
pylint>=2.17.0             # Code analysis

# Type checking
mypy>=1.5.0
pandas-stubs>=2.0.0        # Type stubs for pandas
types-PyYAML>=6.0.0        # Type stubs for PyYAML

# Documentation
sphinx>=7.0.0
sphinx-rtd-theme>=1.3.0    # ReadTheDocs theme
sphinx-autodoc-typehints>=1.24.0
myst-parser>=2.0.0         # Markdown support

# Build and distribution
build>=0.10.0
twine>=4.0.0
wheel>=0.41.0
setuptools>=65.0.0

# Optional: PySpark for testing
pyspark>=3.4.0

# Optional: Cloud providers for testing
# oci>=2.100.0
# azure-storage-blob>=12.0.0
# boto3>=1.26.0

# Optional: Jupyter for interactive development
# jupyter>=1.0.0
# ipython>=8.12.0
