forked from ethereum/eth-tester
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
86 lines (81 loc) · 2.48 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import (
setup,
find_packages,
)
extras_require = {
"lint": [
"black>=22,<23",
"flake8>=3.5.0,<4.0.0",
],
"test": [
"pytest>=6.2.5,<7",
"pytest-xdist>=2.0.0,<3",
"eth-hash[pycryptodome]>=0.1.4,<1.0.0",
],
"dev": [
"bumpversion>=0.5.3,<1.0.0",
"tox>=2.9.1,<3.0.0",
"wheel>=0.30.0,<1.0.0",
],
"py-evm": [
# Pin py-evm to exact version, until it leaves alpha.
# EVM is very high velocity and might change API at each alpha.
"py-evm==0.6.1a1",
"eth-hash[pysha3]>=0.1.4,<1.0.0;implementation_name=='cpython'",
"eth-hash[pycryptodome]>=0.1.4,<1.0.0;implementation_name=='pypy'",
],
"docs": [
"towncrier>=21,<22",
],
}
extras_require["dev"] = (
extras_require["dev"]
+ extras_require["test"]
+ extras_require["py-evm"]
+ extras_require["lint"]
+ extras_require["docs"]
)
# convenience in case someone leaves out the `-`
extras_require["pyevm"] = extras_require["py-evm"]
with open("./README.md") as readme:
long_description = readme.read()
setup(
name="eth-tester",
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
version="0.8.0-beta.1",
description="""Tools for testing Ethereum applications.""",
long_description=long_description,
long_description_content_type="text/markdown",
author="Piper Merriam",
author_email="[email protected]",
url="https://github.com/ethereum/eth-tester",
include_package_data=True,
install_requires=[
"eth-abi>=3.0.1",
"eth-account>=0.6.0,<0.8.0",
"eth-keys>=0.4.0,<0.5.0",
"eth-utils>=2.0.0,<3.0.0",
"rlp>=3.0.0,<4",
"semantic_version>=2.6.0,<3.0.0",
],
extras_require=extras_require,
python_requires=">=3.6.8,<4",
py_modules=["eth_tester"],
license="MIT",
zip_safe=False,
keywords="ethereum",
packages=find_packages(exclude=["tests", "tests.*"]),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)