forked from you-n-g/toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1013 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1013 Bytes
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
[project]
name = "xytb"
dynamic = ["version"]
description = "xytb is just (x)iao (y)ang's (t)ool(b)ox; https://github.com/you-n-g/toolbox"
readme = "README.md"
authors = [
{ name = "Young", email = "afe.young@gmail.com" }
]
requires-python = ">=3.11"
dependencies = [
"litellm>=1.73.2",
"pydantic-settings>=2.10.1",
"rich>=14.0.0",
"typer>=0.16.0",
]
[project.urls]
Repository = "https://github.com/you-n-g/toolbox"
[project.scripts]
xytb = "xytb.cli:app"
# ───────── semantic-release settings ─────────
[tool.semantic_release]
version_source = "commit"
commit_parser = "conventional" # Switch to new parser as angular is deprecated
tag_format = "v{version}"
major_on_zero = true
build_command = "uvx hatch build"
changelog_file = "CHANGELOG.md"
[build-system]
requires = [
"setuptools-scm",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = "no-local-version"
version_scheme = "guess-next-dev"