-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (66 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
71 lines (66 loc) · 1.59 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "chatsbom"
version = "0.5.4"
description = "ChatSBOM - Talk to your Supply Chain. Chat with SBOMs."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"dotenv>=0.9.9",
"pygithub>=2.8.1",
"clickhouse-connect>=0.7.16",
"ratelimit>=2.2.1",
"requests>=2.32.5",
"rich>=14.3.2",
"typer>=0.21.1",
"structlog>=24.0.0",
"requests-cache>=1.3.0",
"claude-agent-sdk>=0.1.0",
"prompt_toolkit>=3.0.0",
"mcp>=1.26.0",
"pandas>=2.0.0",
"clickhouse-connect>=0.7.0",
"textual>=7.5.0",
"gitpython>=3.1.46",
"matplotlib>=3.10.8",
"pyyaml>=6.0.3",
"humanize>=4.15.0",
"tiktoken>=0.8.0",
"litellm>=1.81.15",
"instructor>=1.14.5",
"openai>=2.24.0",
"httpx>=0.28.1",
]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-mock>=3.15.1",
]
[project.scripts]
chatsbom = "chatsbom.__main__:app"
[tool.bumpversion]
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
ignore_missing_files = false
tag = false
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = false
message = "Bump version: {current_version} → {new_version}"
moveable_tags = []
commit_args = ""
setup_hooks = []
pre_commit_hooks = []
post_commit_hooks = []
[tool.bump-my-version.files]
"pyproject.toml" = [
'project.version'
]