File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1414See DESIGN_PATTERNS_README.md for detailed documentation.
1515"""
1616
17- __version__ = "1.0.3"
17+ try :
18+ import setuptools_scm
19+ __version__ = setuptools_scm .get_version ()
20+ except (ImportError , LookupError ):
21+ __version__ = "1.1.0" # Fallback to hardcoded version
1822__author__ = "Code Assistant Manager Contributors"
1923
2024from .config import ConfigManager
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ dependencies = [
2222 " httpx>=0.27.0" ,
2323 " tomli>=2.0.0" ,
2424 " tomli-w>=1.0.0" ,
25+ " setuptools-scm>=8.0.0" ,
2526]
2627
2728[project .urls ]
@@ -58,9 +59,6 @@ dev = [
5859where = [" ." ]
5960exclude = [" tests*" , " build*" ]
6061
61- [tool .setuptools .dynamic ]
62- version = {attr = " code_assistant_manager.__version__" }
63-
6462[tool .setuptools .package-data ]
6563"code_assistant_manager" = [
6664 " mcp/registry/**/*.json" ,
You can’t perform that action at this time.
0 commit comments