-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
77 lines (66 loc) · 2.2 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
import re
import os.path
import sys
import platform
from setuptools import setup, find_packages
uvloop = 'uvloop>=0.8.1'
install_requires = [
'aiohttp>=2.2.5',
'async-timeout>=1.4.0',
]
if platform.python_implementation() == 'CPython':
install_requires.append('ujson')
PY_VER = sys.version_info
if PY_VER >= (3, 5) and sys.platform != "win32":
install_requires.append(uvloop)
elif PY_VER >= (3, 4):
pass
elif PY_VER >= (3, 3):
install_requires.append('asyncio>=3.4.3')
else:
raise RuntimeError("aioethereum doesn't support Python version prior 3.3")
def read(*parts):
with open(os.path.join(*parts), 'rt') as f:
return f.read().strip()
def read_version():
regexp = re.compile(r"^__version__\W*=\W*'([\d.abrc]+)'")
init_py = os.path.join(os.path.dirname(__file__),
'aioethereum', '__init__.py')
with open(init_py) as f:
for line in f:
match = regexp.match(line)
if match is not None:
return match.group(1)
else:
raise RuntimeError('Cannot find version in '
'aioethereum/__init__.py')
classifiers = [
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Framework :: AsyncIO',
]
setup(
name='aioethereum',
version=read_version(),
description=("Ethereum RPC client library for Python asyncio (PEP 3156)"),
long_description="\n\n".join((read('README.rst'), read('CHANGES.rst'))),
classifiers=classifiers,
platforms=["POSIX"],
author="Bogdan Kurinnyi",
author_email="[email protected]",
url="https://github.com/DeV1doR/aioethereum",
license="MIT",
packages=find_packages(exclude=["tests"]),
install_requires=install_requires,
include_package_data=True,
)