mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 00:05:01 +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"
|