-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (50 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
62 lines (50 loc) · 1.21 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
[project]
name = "trobz-agent"
version = "1.0.2"
description = "Run an AI agent"
authors = [{name = "Hai Lang", email = "hailn@trobz.com"}]
requires-python = ">=3.10"
readme = "README.md"
license = "AGPL-3.0"
license-files = ["LICENSE"]
dependencies = [
"typer>=0.19.2"
]
[project.urls]
Repository = "https://github.com/trobz/agent.py"
[project.scripts]
agent = "trobz_agent.agent:cli"
[dependency-groups]
dev = [
"pre-commit>=2.20.0",
"ty>=0.0.1a16",
"ruff>=0.11.5",
"pytest>=7.2.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["uv_build>=0.7.19,<0.8.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "trobz_agent"
module-root = ""
[project.optional-dependencies]
build = ["uv ~= 0.7.12"]
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
build_command = """
python -m pip install -e '.[build]'
uv lock --upgrade-package trobz-agent
git add uv.lock
uv build
"""
[tool.semantic_release.changelog]
exclude_commit_patterns = [
'''chore(?:\([^)]*?\))?: .+''',
'''ci(?:\([^)]*?\))?: .+''',
'''style(?:\([^)]*?\))?: .+''',
'''test(?:\([^)]*?\))?: .+''',
'''build\((?!deps\): .+)''',
'''initial commit.*''',
]