forked from hirosystems/stacks.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·44 lines (41 loc) · 1.42 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
#!/usr/bin/python
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-client/archive/master.zip',
zip_safe=False,
include_package_data=True,
install_requires=[
'virtualchain>=0.0.13.0',
'protocoin>=0.1',
'blockstack-profiles>=0.4.4',
'pybitcoin>=0.9.9',
'blockstack-zones>=0.1.6',
'blockstack-storage-drivers>=0.0.13.6',
'blockstack-utxo>=0.0.13.0',
'defusedxml>=0.4.1',
'keylib>=0.0.5',
'mixpanel>=4.3.1',
'pycrypto>=2.6.1'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)