-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (98 loc) · 2.53 KB
/
pyproject.toml
File metadata and controls
105 lines (98 loc) · 2.53 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "libit"
version = "5.3.6"
description = "Professional Bitcoin, Ethereum and Tron wallet generation library with support for multiple address formats"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Mmdrza", email = "Pymmdrza@gmail.com"},
]
maintainers = [
{name = "Mmdrza", email = "Pymmdrza@gmail.com"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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 :: Software Development :: Libraries :: Python Modules",
"Topic :: Security :: Cryptography",
"Topic :: Office/Business :: Financial",
]
keywords = [
"bitcoin", "ethereum", "tron", "cryptography", "wallet",
"cryptocurrency", "blockchain", "private-key", "address",
"p2pkh", "p2sh", "p2wpkh", "p2wsh", "segwit", "bech32"
]
requires-python = ">=3.7"
dependencies = [
"pycryptodome>=3.15.0",
"ecdsa>=0.18.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=5.0.0",
"mypy>=0.991",
]
docs = [
"sphinx>=5.0.0",
"sphinx-rtd-theme>=1.0.0",
]
enhanced = [
"mnemonic>=0.20",
"hdwallet>=2.2.1",
"qrcode>=7.3.1",
]
[project.urls]
Homepage = "https://github.com/pylibit/libit"
Documentation = "https://pylibit.github.io/libit/"
Repository = "https://github.com/pylibit/libit"
"Bug Tracker" = "https://github.com/pylibit/libit/issues"
Changelog = "https://github.com/pylibit/libit/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["libit*"]
exclude = ["tests*"]
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.mypy]
python_version = "3.7"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["tests.py"]
python_files = ["test_*.py", "*_test.py", "tests.py"]
addopts = [
"--strict-markers",
"--strict-config",
"--disable-warnings",
]