@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44
55[tool .poetry ]
66name = " avcmt-py"
7- version = " 1.3 .0"
7+ version = " 1.4 .0"
88description = " avcmt-py: AI-Powered Semantic Release Style Git Commit Automation for Python Project."
99authors = [ " Andy Vandaric <andyvandaric@gmail.com>" ,]
1010license = " Apache-2.0"
@@ -25,8 +25,7 @@ Documentation = "https://avcmt.avandaric.live/docs"
2525python = " ^3.10"
2626requests = " ^2.32"
2727rich = " ^14.0.0"
28- typer = {extras = [" all" ], version = " ^0.12.3" }
29- toml = " ^0.10.2" # Add toml for reading pyproject.toml
28+ toml = " ^0.10.2"
3029
3130[tool .poetry .scripts ]
3231avcmt = " avcmt.cli.main:app"
@@ -39,13 +38,6 @@ helper = "scripts.helper:main"
3938preflight = " scripts.preflight:main"
4039semrel = " scripts.semrel:main"
4140
42- [tool .avcmt .release ]
43- version_path = " pyproject.toml:tool.poetry.version"
44- changelog_file = " CHANGELOG.md"
45- branch = " main"
46- publish_to_pypi = true
47- repo_url = " https://github.com/andyvandaric/avcmt-py"
48-
4941[tool .ruff .lint ]
5042preview = true
5143select = [ " E" , " F" , " I" , " N" , " UP" , " B" , " C90" , " SIM" , " TID" , " PL" , " PTH" , " NPY" , " PD" , " PERF" , " RUF" ,]
@@ -56,6 +48,17 @@ ignore = [ "D", "ANN", "COM812", "ISC001", "T201", "S603", "S607", "S404", "S701
5648quote-style = " double"
5749indent-style = " space"
5850
51+ [tool .avcmt .release ]
52+ version_path = " pyproject.toml:tool.poetry.version"
53+ changelog_file = " CHANGELOG.md"
54+ branch = " main"
55+ publish_to_pypi = true
56+ repo_url = " https://github.com/andyvandaric/avcmt-py"
57+
58+ [tool .poetry .dependencies .typer ]
59+ extras = [ " all" ,]
60+ version = " ^0.12.3"
61+
5962[tool .ruff .lint .per-file-ignores ]
6063"__init__.py" = [ " F401" ,]
6164
0 commit comments