forked from stx-labs/stacks.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (34 loc) · 1.17 KB
/
setup.py
File metadata and controls
executable file
·37 lines (34 loc) · 1.17 KB
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
#!/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=[
'boto==2.38.0',
'basicrpc==0.0.2',
'virtualchain==0.0.6',
'protocoin==0.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',
],
)