# AI Architect Lite - Python Dependencies

# Python Version Requirement
# This project requires Python 3.8 or higher for:
# - PEP 604 Union type syntax (X | Y) via __future__ annotations
# - pathlib.Path improvements
# - typing module enhancements

python_requires = ">=3.8"

# No External Dependencies Required
# This project uses only Python standard library to maintain:
# - Minimal installation overhead
# - Maximum compatibility
# - Reduced security surface area
# - Easy deployment

# If you need to verify your Python version:
# python --version

# Development Dependencies (Optional)
# Uncomment if you want to run linting/formatting tools:
# black>=24.0.0
# mypy>=1.0.0
# pylint>=3.0.0
# pytest>=7.0.0
