Add version number and fix warnings

This commit is contained in:
2025-05-28 12:37:03 +02:00
parent 521a0d6937
commit 2afa7dbebf
11 changed files with 332 additions and 117 deletions

8
backend/version.py Normal file
View File

@@ -0,0 +1,8 @@
"""
Version configuration for Groceries Tracker Backend
Single source of truth for version information
"""
__version__ = "1.0.0"
__app_name__ = "Groceries Tracker API"
__description__ = "API for tracking grocery shopping events, products, and expenses"