feat(packaging) + chore(workplan): complete T02 for CYA-WP-0004 — implemented setuptools_scm for dynamic versioning
This commit is contained in:
parent
379c68097f
commit
2f1fba9767
4 changed files with 30 additions and 12 deletions
|
|
@ -1,8 +1,12 @@
|
|||
"""can-you-assist (cya)
|
||||
|
||||
Console-native LLM assistant for practical local work (MVP scaffolding).
|
||||
Console-native LLM assistant for practical local work.
|
||||
|
||||
See workplans/CYA-WP-0001 for the full task breakdown and integration boundaries.
|
||||
"""
|
||||
|
||||
__version__ = "0.1.0"
|
||||
try:
|
||||
from ._version import __version__
|
||||
except ImportError:
|
||||
# Fallback for editable installs without setuptools_scm having run yet
|
||||
__version__ = "0.0.0+unknown"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue