# NovaLang Backend Dependencies
# Install with: pip install -r requirements.txt

# Core database connectivity
mysql-connector-python==8.2.0

# Environment management
python-dotenv==1.0.0

# Web framework (for production)
flask==3.0.0
flask-cors==4.0.0

# Security
bcrypt==4.1.2
pyjwt==2.8.0

# HTTP client for testing
requests==2.31.0

# Additional dependencies for entity system
sqlalchemy==2.0.25  # ORM support (optional)
alembic==1.13.1     # Database migrations (optional)

# Development tools (optional)
pytest==7.4.3
black==23.11.0
