mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 09:44:59 +00:00
6 lines
152 B
Python
6 lines
152 B
Python
from setuptools_scm import get_version
|
|
|
|
try:
|
|
__version__ = get_version(root="..", relative_to=__file__)
|
|
except Exception:
|
|
__version__ = "0.0.0"
|