Update setup.py

Signed-off-by: Mithun Gowda B <mithungowda.b7411@gmail.com>
This commit is contained in:
Mithun Gowda B 2025-07-15 18:07:14 +05:30 committed by GitHub
parent 7e186b7d6a
commit b2f283e45b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,10 +13,10 @@ def get_version():
return f.read().strip() return f.read().strip()
except FileNotFoundError: except FileNotFoundError:
logger.warning("VERSION file not found, using fallback version") logger.warning("VERSION file not found, using fallback version")
return "0.1.0" return "3.0.0"
except Exception as e: except Exception as e:
logger.error(f"Error reading VERSION file: {e}") logger.error(f"Error reading VERSION file: {e}")
return "0.1.0" return "3.0.0"
def get_long_description(): def get_long_description():
"""Get long description from README with error handling.""" """Get long description from README with error handling."""