forked from hyperledger/indy-plenum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
141 lines (119 loc) · 4.54 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
import os
import sys
import subprocess
import distutils.cmd
from setuptools import setup, find_packages
from setuptools.command.install import install
from setuptools.command.develop import develop
v = sys.version_info
if sys.version_info < (3, 5):
msg = "FAIL: Requires Python 3.5 or later, " \
"but setup.py was run using {}.{}.{}"
v = sys.version_info
print(msg.format(v.major, v.minor, v.micro))
# noinspection PyPackageRequirements
print("NOTE: Installation failed. Run setup.py using python3")
sys.exit(1)
try:
here = os.path.abspath(os.path.dirname(__file__))
except NameError:
# it can be the case when we are being run as script or frozen
here = os.path.abspath(os.path.dirname(sys.argv[0]))
metadata = {'__file__': os.path.join(here, 'plenum', '__metadata__.py')}
with open(metadata['__file__'], 'r') as f:
exec(f.read(), metadata)
tests_require = ['attrs==19.1.0', 'pytest==3.3.1', 'pytest-xdist==1.22.1', 'pytest-forked==0.2',
'python3-indy==1.15.0-dev-1625', 'pytest-asyncio==0.8.0']
class PyZMQCommand(distutils.cmd.Command):
description = 'pyzmq install target'
version = 'pyzmq==18.1.0'
options = '--install-option=--zmq=bundled'
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
command = ['pip', 'install', self.version, self.options]
subprocess.check_call(command)
class InstallCommand(install):
description = 'install target'
def run(self):
install.run_command(self, command='pyzmq')
install.run(self)
class DevelopCommand(develop):
description = 'develop target'
def run(self):
develop.run_command(self, command='pyzmq')
develop.run(self)
setup(
cmdclass={
'install': InstallCommand,
'develop': DevelopCommand,
'pyzmq': PyZMQCommand,
},
name=metadata['__title__'],
version=metadata['__version__'],
author=metadata['__author__'],
author_email=metadata['__author_email__'],
maintainer=metadata['__maintainer__'],
maintainer_email=metadata['__maintainer_email__'],
url=metadata['__url__'],
description=metadata['__description__'],
long_description=metadata['__long_description__'],
download_url=metadata['__download_url__'],
license=metadata['__license__'],
classifiers=[
"Programming Language :: Python :: 3"
],
keywords='Byzantine Fault Tolerant Plenum',
packages=find_packages(exclude=['test', 'test.*', 'docs', 'docs*', 'simulation']) + [
'data', ],
# TODO move that to MANIFEST.in
package_data={
'': ['*.txt', '*.md', '*.rst', '*.json', '*.conf', '*.html',
'*.css', '*.ico', '*.png', 'LICENSE', 'LEGAL', 'plenum']},
include_package_data=True,
install_requires=[
'jsonpickle==0.9.6',
'ujson==1.33',
'prompt_toolkit==0.57',
'pygments==2.2.0',
'rlp==0.5.1',
'sha3==0.2.1',
'leveldb',
'ioflo==1.5.4',
'semver==2.7.9',
'base58==1.0.0',
'orderedset==2.0.3',
'sortedcontainers==1.5.7',
'psutil==5.6.6',
'importlib_metadata>=2.0',
'portalocker==0.5.7',
'libnacl==1.6.1',
'six==1.11.0',
'intervaltree==2.1.0',
'msgpack-python==0.4.6',
'python-rocksdb==0.6.9',
'python-dateutil==2.6.1',
'pympler==0.8',
'packaging==19.0',
'python-ursa==0.1.1',
],
setup_requires=['pytest-runner'],
extras_require={
'tests': tests_require,
'stats': ['python-firebase'],
'benchmark': ['pympler']
},
tests_require=tests_require,
scripts=['scripts/init_plenum_keys',
'scripts/start_plenum_node',
'scripts/generate_plenum_pool_transactions',
'scripts/gen_steward_key', 'scripts/gen_node',
'scripts/export-gen-txns', 'scripts/get_keys',
'scripts/udp_sender', 'scripts/udp_receiver', 'scripts/filter_log',
'scripts/log_stats',
'scripts/init_bls_keys',
'scripts/process_logs/process_logs',
'scripts/process_logs/process_logs.yml']
)