forked from 1200wd/bitcoinlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
89 lines (82 loc) · 3.12 KB
/
setup.py
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
89
# -*- coding: utf-8 -*-
#
# BitcoinLib - Python Cryptocurrency Library
# PyPi Setup Tool
# © 2018-2020 January - 1200 Web Development <http://1200wd.com/>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from setuptools import setup
from codecs import open
import os
import sys
here = os.path.abspath(os.path.dirname(__file__))
version = '0.5.3'
# Get the long description from the relevant file
readmetxt = ''
try:
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
readmetxt = f.read()
except:
pass
kwargs = {}
install_requires = [
'requests==2.25.1',
'fastecdsa==2.1.5;platform_system!="Windows"',
'ecdsa==0.16;platform_system=="Windows"',
'pyaes==1.6.1',
'scrypt==0.8.17',
'SQLAlchemy==1.3.22',
'numpy==1.19.5',
]
kwargs['install_requires'] = install_requires
setup(
name='bitcoinlib',
version=version,
description='Bitcoin and Other cryptocurrency Library',
long_description=readmetxt,
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.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Security :: Cryptography',
'Topic :: Office/Business :: Financial :: Accounting',
],
url='http://github.com/1200wd/bitcoinlib',
author='1200wd',
author_email='[email protected]',
license='GNU3',
packages=['bitcoinlib'],
entry_points={
'console_scripts': ['cli-wallet=bitcoinlib.tools.clw:main',
'clw=bitcoinlib.tools.clw:main']
},
test_suite='tests',
include_package_data=True,
keywords='bitcoin library cryptocurrency wallet crypto keys segwit litecoin dash',
zip_safe=False,
**kwargs
)