-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
140 lines (121 loc) · 3.04 KB
/
pyproject.toml
File metadata and controls
140 lines (121 loc) · 3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "goal"
version = "2.1.218"
description = "Goal - Automated git push with enterprise-grade commit intelligence, smart conventional commit generation based on deep code analysis, and interactive release workflow management."
readme = "README.md"
authors = [
{name = "Tom Sapletta", email = "tom@sapletta.com"},
]
keywords = ["git", "automation", "commit", "changelog", "versioning", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
]
requires-python = ">=3.10"
dependencies = [
"click>=8.0.0",
"typer>=0.24",
"PyYAML>=6.0",
"clickmd>=0.1.0",
"costs>=0.1.21",
"tomlkit>=0.12.0",
]
[project.license]
text = "Apache-2.0"
[project.optional-dependencies]
nfo = [
"nfo>=0.2.22",
]
dev = [
"pytest>=7.0.0",
"build",
"twine",
"pfix>=0.1.60",
"tox>=4.0.0",
]
[project.scripts]
goal = "goal.cli:main"
[project.urls]
Homepage = "https://github.com/wronai/goal"
Repository = "https://github.com/wronai/goal"
Issues = "https://github.com/wronai/goal/issues"
[tool.poetry]
name = "goal"
version = "2.1.158"
description = "Goal - Automated git push with enterprise-grade commit intelligence, smart conventional commit generation based on deep code analysis, and interactive release workflow management."
readme = "README.md"
license = "Apache-2.0"
authors = ["Tom Sapletta <tom@sapletta.com>"]
homepage = "https://github.com/wronai/goal"
repository = "https://github.com/wronai/goal"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.0.0"
typer = ">=0.24"
PyYAML = "^6.0"
clickmd = "^0.1.0"
costs = "^0.1.21"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
build = "*"
twine = "*"
pfix = "^0.1.60"
[tool.poetry.scripts]
goal = "goal.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["goal*"]
[tool.costs]
# AI Cost tracking configuration
badge = true
update_readme = true
readme_path = "README.md"
default_model = "openrouter/x-ai/grok-code-fast-1"
analysis_mode = "byok"
full_history = true
max_commits = 500
# Cost thresholds for badge colors (USD)
badge_color_thresholds = { low = 1.0, medium = 5.0, high = 10.0, critical = 50.0 }
[tool.pytest.ini_options]
testpaths = ["tests"]
norecursedirs = ["venv", ".venv", "build", "dist", "*.egg-info"]
python_files = ["test_*.py"]
[tool.pfix]
# Self-healing Python configuration
model = "openrouter/x-ai/grok-code-fast-1"
auto_apply = true
auto_install_deps = true
auto_restart = false
max_retries = 3
create_backups = false
git_auto_commit = false
[tool.pfix.runtime_todo]
enabled = true
todo_file = "TODO.md"
min_severity = "low"
deduplicate = true
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py310,py311,py312,py313
isolated_build = true
[testenv]
deps =
pytest>=7.0.0
build
twine
pfix>=0.1.60
extras = nfo
commands = pytest {posargs}
[testenv:lint]
deps =
pfix>=0.1.60
commands = pfix check {posargs}
[testenv:pyqual]
deps =
pyqual>=0.2.0
commands = pyqual validate --config pyqual.yaml
"""