""" UnitForge Backend Package This package contains the core functionality for UnitForge, including: - Unit file parsing and validation - Template system for common configurations - CLI interface - Web API endpoints The backend is designed to be modular and can be used both as a standalone library and as part of the web application. """ import os __version__ = os.getenv("APP_VERSION", "1.1.0") __author__ = "UnitForge Team" __email__ = os.getenv("CONTACT_EMAIL", "contact@unitforge.dev") # Package metadata __all__ = [ "__version__", "__author__", "__email__", ]