-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #345 from 1200wd/replace-setup-py
Replace setup py
- Loading branch information
Showing
9 changed files
with
81 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
requests>=2.25.0 | ||
fastecdsa>=2.2.1 | ||
SQLAlchemy>=1.4.24 | ||
numpy>=1.22.0 | ||
scrypt>=0.8.18 | ||
pycryptodome>=3.14.1 | ||
SQLAlchemy>=1.4.45 | ||
numpy>=1.22.0 | ||
sphinx>=4.3.1 | ||
coveralls>=3.0.1 | ||
psycopg2>=2.9.2 | ||
mysql-connector-python>=8.0.27 | ||
mysqlclient>=2.1.0 | ||
parameterized>=0.8.1 | ||
sphinx_rtd_theme>=1.0.0 | ||
Cython | ||
win-unicode-console;platform_system=="Windows" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,61 @@ | ||
[metadata] | ||
description-file = README.rst | ||
name = bitcoinlib | ||
version = 0.6.12 | ||
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.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
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.2.1;platform_system!="Windows" | ||
ecdsa >= 0.17 | ||
pycryptodome >= 3.14.1 | ||
SQLAlchemy >= 1.4.28 | ||
numpy == 1.19.5;python_version<"3.9" | ||
numpy >= 1.22.0;python_version>="3.9" | ||
|
||
[options.extras_require] | ||
dev = | ||
scrypt >= 0.8.18 | ||
sphinx >= 4.3.1 | ||
coveralls >= 3.0.1 | ||
psycopg2 >= 2.9.2 | ||
mysql-connector-python >= 8.0.27 | ||
mysqlclient >= 2.1.0 | ||
parameterized >= 0.8.1 | ||
sphinx_rtd_theme >= 1.0.0 | ||
Cython | ||
win-unicode-console;platform_system=="Windows" | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
cli-wallet = bitcoinlib.tools.clw:main | ||
clw = bitcoinlib.tools.clw:main |