-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (78 loc) · 2.3 KB
/
Copy pathpyproject.toml
File metadata and controls
88 lines (78 loc) · 2.3 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "crypto-key-classifier"
version = "0.7.0"
description = "Classify any crypto-key string (BTC/ETH/SOL/Cosmos + more) with aggressive recovery from corruption"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Jordan Newell" }]
dependencies = [
"base58>=2.1.1",
"pycryptodome>=3.20",
]
keywords = [
"crypto",
"bitcoin",
"ethereum",
"solana",
"cosmos",
"bip39",
"key-recovery",
"blockchain",
"forensics",
"cli",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/JordanNewell/crypto-key-classifier"
Documentation = "https://jordannewell.github.io/crypto-key-classifier/"
Source = "https://github.com/JordanNewell/crypto-key-classifier"
Repository = "https://github.com/JordanNewell/crypto-key-classifier"
Changelog = "https://github.com/JordanNewell/crypto-key-classifier/blob/main/CHANGELOG.md"
Issues = "https://github.com/JordanNewell/crypto-key-classifier/issues"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=4.1",
"pytest-snapshot>=0.9",
"pyright>=1.1.350",
"ruff>=0.6",
"hypothesis>=6.100",
]
[project.scripts]
classify-key = "ckc.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"ckc.data" = ["*.txt"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--strict-markers -v"
[tool.pyright]
typeCheckingMode = "strict"
pythonVersion = "3.10"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]