forked from ethereum/trinity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
173 lines (162 loc) · 5.33 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
PYEVM_DEPENDENCY = "py-evm==0.3.0a1"
deps = {
'p2p': [
"async-generator==1.10",
"asyncio-cancel-token==0.1.0a2",
"async_lru>=0.1.0,<1.0.0",
"cached-property>=1.5.1,<2",
# cryptography does not use semver and allows breaking changes within `0.3` version bumps.
"cryptography>=2.5,<2.7",
"eth-hash>=0.1.4,<1",
"eth-keys>=0.2.4,<0.3.0",
"netifaces>=0.10.7<1",
"pysha3>=1.0.0,<2.0.0",
"SQLAlchemy>=1.3.3,<2",
'trio==0.11.0,<0.12',
'trio-typing>=0.2.0,<0.3',
"upnpclient>=0.0.8,<1",
],
'trinity': [
"bloom-filter==1.3",
"cachetools>=3.1.0,<4.0.0",
"coincurve>=10.0.0,<11.0.0",
"dataclasses>=0.6, <1;python_version<'3.7'",
"eth-utils>=1.6.2,<2",
"ipython>=6.2.1,<7.0.0",
"plyvel==1.0.5",
PYEVM_DEPENDENCY,
"web3==4.4.1",
"lahja>=0.14.0,<0.15.0",
"termcolor>=1.1.0,<2.0.0",
"uvloop==0.11.2;platform_system=='Linux' or platform_system=='Darwin' or platform_system=='FreeBSD'", # noqa: E501
"websockets==5.0.1",
"jsonschema==3.0.1",
"mypy_extensions>=0.4.1,<1.0.0",
"typing_extensions>=3.7.2,<4.0.0",
"ruamel.yaml==0.15.98",
"argcomplete>=1.10.0,<2",
"multiaddr>=0.0.8,<0.1.0",
"pymultihash>=0.8.2",
# FIXME: Change to PyPI when the commit is released.
"libp2p @ git+https://[email protected]/libp2p/py-libp2p@69a3553"
],
'test': [
"hypothesis>=4.24.3,<5",
"pexpect>=4.6, <5",
"factory-boy==2.11.1",
# pinned to <3.7 until async fixtures work again
# https://github.com/pytest-dev/pytest-asyncio/issues/89
"pytest>=3.6,<3.7",
"pytest-cov==2.5.1",
"pytest-watch>=4.1.0,<5",
"pytest-xdist==1.18.1",
"pytest-mock==1.10.4",
"pytest-randomly==3.0.0",
# only for eth2
"ruamel.yaml==0.15.98",
],
# We have to keep some separation between trio and asyncio based tests
# because `pytest-asyncio` is greedy and tries to run all asyncio fixtures.
# See: https://github.com/ethereum/trinity/pull/790
'test-asyncio': [
"pytest-asyncio>=0.10.0,<0.11",
"pytest-asyncio-network-simulator==0.1.0a2;python_version>='3.6'",
],
'test-trio': [
'pytest-trio==0.5.2',
],
'lint': [
"flake8==3.5.0",
"flake8-bugbear==18.8.0",
"mypy==0.701",
"sqlalchemy-stubs==0.1",
],
'doc': [
"pytest~=3.2",
# Sphinx pined to `<1.8.0`: https://github.com/sphinx-doc/sphinx/issues/3494
"Sphinx>=1.5.5,<1.8.0",
"sphinx_rtd_theme>=0.1.9",
"sphinxcontrib-asyncio>=0.2.0",
"towncrier>=19.2.0, <20",
],
'dev': [
"bumpversion>=0.5.3,<1",
"wheel",
"setuptools>=36.2.0",
# Fixing this dependency due to: pytest 3.6.4 has requirement
# pluggy<0.8,>=0.5, but you'll have pluggy 0.8.0 which is incompatible.
"pluggy==0.7.1",
# Fixing this dependency due to: requests 2.20.1 has requirement
# idna<2.8,>=2.5, but you'll have idna 2.8 which is incompatible.
"idna==2.7",
# idna 2.7 is not supported by requests 2.18
"requests>=2.20,<3",
"tox==2.7.0",
"twine",
],
'eth2': [
"cytoolz>=0.9.0,<1.0.0",
"eth-typing>=2.1.0,<3.0.0",
"lru-dict>=1.1.6",
"py-ecc==1.7.1",
"rlp>=1.1.0,<2.0.0",
PYEVM_DEPENDENCY,
"ssz==0.1.3",
"blspy>=0.1.8,<1", # for `bls_chia`
],
}
# NOTE: Snappy breaks RTD builds. Until we have a more mature solution
# we conditionally add python-snappy based on the presence of an env var
rtd_build_env = os.environ.get('READTHEDOCS', False)
if not rtd_build_env:
deps['p2p'].append("python-snappy>=0.5.3")
deps['dev'] = (
deps['dev'] +
deps['p2p'] +
deps['trinity'] +
deps['test'] +
deps['doc'] +
deps['lint'] +
deps['eth2']
)
install_requires = deps['trinity'] + deps['p2p'] + deps['eth2']
with open('./README.md') as readme:
long_description = readme.read()
setup(
name='trinity',
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
version='0.1.0-alpha.27',
description='The Trinity client for the Ethereum network',
long_description=long_description,
long_description_content_type='text/markdown',
author='Ethereum Foundation',
author_email='[email protected]',
url='https://github.com/ethereum/trinity',
include_package_data=True,
py_modules=['trinity', 'p2p', 'eth2'],
python_requires=">=3.6,<4",
install_requires=install_requires,
extras_require=deps,
license='MIT',
zip_safe=False,
keywords='ethereum blockchain evm trinity',
packages=find_packages(exclude=["tests", "tests.*"]),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
],
# trinity
entry_points={
'console_scripts': [
'trinity=trinity:main',
'trinity-beacon=trinity:main_beacon'
],
},
)