forked from stacks-network/stacks-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·49 lines (44 loc) · 1.64 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
#!/usr/bin/env python2
from setuptools import setup, find_packages
# to set __version__
exec(open('blockstack_integration_tests/version.py').read())
print 'version = {}'.format(__version__)
setup(
name='blockstack-integration-tests',
version=__version__,
url='https://github.com/blockstack/blockstack-integration-tests',
license='GPLv3',
author='Blockstack.org',
author_email='[email protected]',
description='Integration tests for Blockstack packages',
keywords='blockchain bitcoin btc cryptocurrency name key value store data',
packages=find_packages(),
scripts=[
'bin/blockstack-test-scenario',
'bin/blockstack-test-check-serialization',
'bin/blockstack-test-all',
'bin/blockstack-test-all-junit',
'bin/blockstack-test-env',
'bin/blockstack-netlog-server',
],
download_url='https://github.com/blockstack/blockstack-integration-tests/archive/master.zip',
zip_safe=False,
include_package_data=True,
install_requires=[
'blockstack>=20.0.9.0',
'xmlrunner>=1.7.7',
'influxdb>=4.1.1',
# hold-overs for blockstack_client
'jsonpointer>=1.14',
'pyparsing>=2.2.0', # not required, but causes problems if not installed properly
],
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',
],
)