-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.59 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
[build-system]
requires = ["poetry-core>=1.8.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "bipsea"
version = "3.0.0"
description = "Composable Python CLI for Bitcoin mnemonics and BIP-85 secrets."
readme = "README.md"
authors = ["Aneesh Karve <bonded_metals_0u@icloud.com>"]
license = "Apache-2.0"
homepage = "https://github.com/akarve/bipsea"
repository = "https://github.com/akarve/bipsea"
keywords = ["Bitcoin", "BIP-32", "BIP-39", "BIP-85", "cryptography", "secrets", "ECDSA", "entropy"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">=3.8.1, <4.0"
click = "~8.1.3"
base58 = "~2.1.1"
build = "~1.2.1"
ecdsa = "~0.19.0"
[tool.poetry.group.dev.dependencies]
black = "~24.4.2"
flake8 = "~7.0.0"
isort = "~5.13.2"
importlib-resources = { version = "^6.4.0", python = "<3.9" }
pycryptodome = "~3.20.0"
pytest = "~8.2.1"
pytest-xdist = "~3.6.1"
pytest-cov = "^5.0.0"
[tool.poetry.scripts]
bipsea = "bipsea.bipsea:cli"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["bipsea", "bipsea.wordlists"]
[tool.setuptools.package-data]
"bipsea" = ["wordlists/*.txt"]