-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.4 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bitcoin_network_tools"
version = "0.0.1"
description = "A wrapper for the Bitnodes API."
readme = "README.md"
license = {text = "Apache Software License"}
requires-python = ">=3.6"
authors = [{name = "Zachary A. Kraehling", email = "zak@zakkraehling.net"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Internet :: WWW/HTTP"
]
dependencies = [
"requests>=2.32.3",
"dnspython>=2.7.0"
]
keywords = [
"bitcoin",
"blockchain",
"cryptocurrency",
"network analysis",
"bitnodes",
"api",
"tools",
"python",
"development",
"crypto",
"financial technology",
"decentralized networks"
]
[project.urls]
homepage = "https://github.com/7astro7/bitcoin-network-tools"
repository = "https://github.com/7astro7/bitcoin-network-tools"
issues = "https://github.com/7astro7/bitcoin-network-tools/issues"
[project.optional-dependencies]
dev = ["pytest", "flake8"]
[project.scripts]
bitcoin_network_tools = "bitcoin_network_tools.cli:main"