This repository has been archived by the owner on Sep 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (50 loc) · 1.57 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
import re
import os.path
import sys
import platform
from setuptools import setup, find_packages
PY_VER = sys.version_info
if PY_VER < (3, 5):
raise RuntimeError("aioredis doesn't support Python version prior 3.5")
#
# with open('requirements.txt') as f:
# install_requires = [line for line in f]
install_requires = [
'eth_abi == 2.0.0',
'eth_account == 0.4.0',
'eth_utils == 1.9.0',
'requests == 2.22.0',
'tenacity == 6.1.0',
'tornado == 6.0.4',
"solidity_parser",
"antlr4-python3-runtime>=4.7,<4.8"
]
classifiers = [
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: POSIX',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries'
]
setup(name='ethvigil-sdk',
version='0.1.a.dev',
description="Python SDK for EthVigil Ethereum APIs",
# long_description="\n\n".join((read('README.rst'), read('CHANGES.txt'))),
classifiers=classifiers,
platforms=["POSIX"],
author="BlockVigil Inc",
author_email="[email protected]",
url="https://ethvigil.com/docs",
license="MIT",
packages=['ethvigil'],
install_requires=install_requires,
include_package_data=True
)