-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (38 loc) · 945 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "used_addr_check"
version = "0.1.6"
authors = [
{ name="RecRanger", email="[email protected]" },
]
description = "A tool to efficiently check if a Bitcoin Address has ever been used before"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"backoff~=2.2.1",
"loguru~=0.7.2",
"orjson~=3.10.1",
"polars~=0.20.23",
"requests~=2.31.0",
"tqdm~=4.66.2",
"ripgrepy~=2.0.0",
]
[project.optional-dependencies]
dev = [
"black~=24.4.2",
"flake8~=7.0.0",
]
test = [
"pytest~=8.2.0",
]
[project.urls]
Homepage = "https://github.com/RecRanger/used-addr-check"
Issues = "https://github.com/RecRanger/used-addr-check/issues"
[project.scripts]
used_addr_check = "used_addr_check.cli:main_cli"