forked from hirosystems/stacks.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·46 lines (43 loc) · 1.51 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
#!/usr/bin/env python2
from setuptools import setup, find_packages
# to set __version__
exec(open('blockstack_client/version.py').read())
setup(
name='blockstack-client',
version=__version__,
url='https://github.com/blockstack/blockstack-client',
license='GPLv3',
author='Blockstack.org',
author_email='[email protected]',
description='Python client library for Blockstack',
keywords='blockchain bitcoin btc cryptocurrency name key value store data',
packages=find_packages(),
scripts=['bin/blockstack'],
download_url='https://github.com/blockstack/blockstack-cli/archive/master.zip',
zip_safe=False,
include_package_data=True,
install_requires=[
'virtualchain>=0.14.0',
'protocoin>=0.2',
'blockstack-profiles>=0.14.0',
'pybitcoin>=0.9.9',
'blockstack-zones>=0.14.0',
'defusedxml>=0.4.1',
'keylib>=0.0.5',
'mixpanel>=4.3.1',
'pycrypto>=2.6.1',
'simplejson>=3.8.2',
'jsonschema>=2.5.1',
'basicrpc>=0.0.2', # DHT storage driver
'boto>=2.38.0' # S3 storage driver
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Internet',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)