-
Notifications
You must be signed in to change notification settings - Fork 204
/
setup.cfg
59 lines (56 loc) · 1.91 KB
/
setup.cfg
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
[metadata]
name = bitcoinlib
version = 0.7.0
url = http://github.com/1200wd/bitcoinlib
author = 1200wd
author_email = [email protected]
license= GNU3
description = Bitcoin cryptocurrency Library
long_description = file: README.rst
keywords = bitcoin library cryptocurrency wallet crypto keys segwit transactions blocks
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Intended Audience :: Developers
Intended Audience :: Financial and Insurance Industry
Intended Audience :: Science/Research
Intended Audience :: Information Technology
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Natural Language :: English
Operating System :: OS Independent
Operating System :: Microsoft :: Windows
Operating System :: POSIX
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 :: Accounting
[options]
packages = find:
zip_safe = True
include_package_data = True
install_requires =
requests >= 2.25.0
fastecdsa >= 2.3.0;platform_system!="Windows"
ecdsa >= 0.18;platform_system=="Windows"
pycryptodome >= 3.19.0
SQLAlchemy >= 2.0.20
numpy == 1.19.5;python_version<"3.9"
numpy >= 1.22.0;python_version>="3.9"
[options.extras_require]
dev =
scrypt >= 0.8.20;platform_system!="Windows"
sphinx >= 7.1.0
coveralls >= 4.0.1
psycopg >= 3.1.16
mysql-connector-python >= 8.4.0
mysqlclient >= 2.2.0
sphinx_rtd_theme >= 2.0.0
Cython>=3.0.8
win-unicode-console;platform_system=="Windows"
[options.entry_points]
console_scripts =
cli-wallet = bitcoinlib.tools.clw:main
clw = bitcoinlib.tools.clw:main