-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (48 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
56 lines (48 loc) · 1.51 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
[project]
name = "xhd-wallet-api"
version = "1.0.0"
description = "BIP32-ed25519 library that supports Khovratovich derivation and Peikert derivation"
authors = [
{ name = "Algorand Foundation", email = "contact@algorand.foundation" },
]
requires-python = ">=3.10"
dependencies = [
"cffi>=2.0.0",
"types-cffi>=1.17.0.20250915",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/xhd_wallet_api_py"]
include = ["src/xhd_wallet_api_py/*.dylib", "src/xhd_wallet_api_py/*.so", "src/xhd_wallet_api_py/*.dll"]
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
commit_message = "chore(release): bump version to {version}"
commit_author = "semantic-release <semantic-release@github.com>"
[tool.semantic_release.changelog.default_templates]
changelog_file = "CHANGELOG.md"
output_format = "md"
[tool.semantic_release.changelog]
# Recommended patterns for conventional commits parser that is scope aware
exclude_commit_patterns = [
'''chore(?:\([^)]*?\))?: .+''',
'''ci(?:\([^)]*?\))?: .+''',
'''refactor(?:\([^)]*?\))?: .+''',
'''style(?:\([^)]*?\))?: .+''',
'''test(?:\([^)]*?\))?: .+''',
'''build\((?!deps\): .+)''',
'''Initial [Cc]ommit.*''',
]
[tool.semantic_release.remote]
type = "github"
[tool.hatch.build.hooks.custom]
path = "hatch_build.py"
[dependency-groups]
dev = [
"auditwheel>=6.6.0",
"mypy>=1.19.1",
"pytest>=9.0.2",
"pynacl>=1.5.0",
"python-semantic-release>=10.0.0",
]