-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1.74 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
[build-system]
requires = ["setuptools>=80", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "codex32"
version = "0.6.1"
authors = [
{ name = "Ben Westgate", email = "benwestgate@protonmail.com" },
]
description = "Python reference implementation for codex32 (BIP93) and codex32-encoded master seeds."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE*"]
maintainers = [
{ name = "Ben Westgate", email = "benwestgate@protonmail.com" },
]
keywords = ["bitcoin", "HD wallet", "BIP32", "BIP93", "BIP173", "BIP350", "codex32", "cryptography", "secret sharing", "secrets", "entropy", "bech32"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries",
]
dependencies = ["bip32>=5.0.0"]
[project.optional-dependencies]
dev = ["pytest", "flake8", "mypy", "black", "isort", "ruff"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.flake8]
max-line-length = 80
exclude = ".git,__pycache__,build,dist"
[tool.pytest.ini_options]
testpaths = ["tests"]
[project.urls]
Homepage = "https://github.com/benwestgate/python-codex32"
Repository = "https://github.com/benwestgate/python-codex32"
Issues = "https://github.com/benwestgate/python-codex32/issues"
Changelog = "https://github.com/benwestgate/python-codex32/tree/master/CHANGELOG.md"