-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
69 lines (60 loc) · 1.7 KB
/
pyproject.toml
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
[build-system]
requires = ["scikit-build-core[pyproject]>=0.9.2"]
build-backend = "scikit_build_core.build"
[project]
name = "bark_cpp_python"
dynamic = ["version"]
description = "Python bindings for the bark.cpp library via ctypes"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Tran Minh Duc", email = "[email protected]" },
]
dependencies = [
"typing-extensions>=4.5.0",
"numpy>=2.1.2",
"scipy>=1.14.1",
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
]
[tool.scikit-build]
wheel.packages = ["bark_cpp"]
cmake.verbose = true
cmake.minimum-version = "3.21"
minimum-version = "0.5.1"
sdist.exclude = [
"docs"
]
sdist.include = [
"vendor/bark.cpp/*",
"vendors_cmakes"
]
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "bark_cpp/__init__.py"
[project.urls]
Homepage = "https://github.com/MDuc-ai/bark-cpp-python"
[tool.semantic_release]
version_variables = ["bark_cpp/__init__.py:__version__"]
tag_format = "v{version}"
[tool.semantic_release.branches.main]
match = "(main|master)"
[tool.semantic_release.default_templates.changelog]
changelog_file = "CHANGELOG.md"
mode = "init"
[tool.semantic_release.commit_parser_options]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test"]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
default_bump_level = 0
[tool.semantic_release.remote]
name = "origin"
type = "github"
ignore_token_for_push = false
insecure = false