This repository has been archived by the owner on May 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
51 lines (48 loc) · 1.5 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import versioneer
versioneer.VCS = 'git'
versioneer.versionfile_source = 'testing/_version.py'
versioneer.versionfile_build = 'testing/_version.py'
versioneer.tag_prefix = '' # tags are like 1.2.0
versioneer.parentdir_prefix = 'testing-' # dirname like 'myproject-1.2.0'
CONSOLE_SCRIPTS = ['testing=testing.testing:main']
LONG = """
Ethereum system-testing
"""
setup(name="testing",
packages=find_packages("."),
description='Ethereum system-testing',
long_description=LONG,
author="caktux",
author_email="caktux@gmail.com",
url='https://github.com/ethereum/system-testing/',
install_requires=[
"rpc",
"argparse",
"bitcoin",
"boto",
"docopt",
"elasticsearch",
"elasticsearch-dsl",
"fabric",
"futures",
"progressbar",
"pygraphviz",
"pysha3",
"pytest",
"pyethereum",
"python-jsonrpc",
"matplotlib"
],
entry_points=dict(console_scripts=CONSOLE_SCRIPTS),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
])