forked from ethereum/web3.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
112 lines (108 loc) · 3.25 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import (
find_packages,
setup,
)
extras_require = {
'tester': [
"eth-tester[py-evm]==v0.5.0-beta.4",
"py-geth>=3.4.0,<4",
],
'linter': [
"flake8==3.8.3",
"isort>=4.2.15,<4.3.5",
"mypy==0.812",
],
'docs': [
"mock",
"sphinx-better-theme>=0.1.4",
"click>=5.1",
"configparser==3.5.0",
"contextlib2>=0.5.4",
"py-geth>=3.4.0,<4",
"py-solc>=0.4.0",
"pytest>=4.4.0,<5.0.0",
"sphinx>=3.0,<4",
"sphinx_rtd_theme>=0.1.9",
"toposort>=1.4",
"towncrier>=19.2.0,<20",
"urllib3",
"wheel"
],
'dev': [
"bumpversion",
"flaky>=3.7.0,<4",
"hypothesis>=3.31.2,<6",
"pytest>=4.4.0,<5.0.0",
"pytest-asyncio>=0.10.0,<0.11",
"pytest-mock>=1.10,<2",
"pytest-pythonpath>=0.3",
"pytest-watch>=4.2,<5",
"pytest-xdist>=1.29,<2",
"setuptools>=38.6.0",
"tox>=1.8.0",
"tqdm>4.32,<5",
"twine>=1.13,<2",
"pluggy==0.13.1",
"when-changed>=0.3.0,<0.4"
]
}
extras_require['dev'] = (
extras_require['tester']
+ extras_require['linter']
+ extras_require['docs']
+ extras_require['dev']
)
with open('./README.md') as readme:
long_description = readme.read()
setup(
name='web3',
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
version='5.23.0',
description="""Web3.py""",
long_description_content_type='text/markdown',
long_description=long_description,
author='Piper Merriam',
author_email='pipermerriam@gmail.com',
url='https://github.com/ethereum/web3.py',
include_package_data=True,
install_requires=[
"aiohttp>=3.7.4.post0,<4",
"eth-abi>=2.0.0b6,<3.0.0",
"eth-account>=0.5.5,<0.6.0",
"eth-hash[pycryptodome]>=0.2.0,<1.0.0",
"eth-typing>=2.0.0,<3.0.0",
"eth-utils>=1.9.5,<2.0.0",
"hexbytes>=0.1.0,<1.0.0",
"ipfshttpclient==0.7.0",
"jsonschema>=3.2.0,<4.0.0",
"lru-dict>=1.1.6,<2.0.0",
"protobuf>=3.10.0,<4",
"pywin32>=223;platform_system=='Windows'",
"requests>=2.16.0,<3.0.0",
# remove typing_extensions after python_requires>=3.8, see web3._utils.compat
"typing-extensions>=3.7.4.1,<4;python_version<'3.8'",
"websockets>=9.1,<10",
],
python_requires='>=3.6,<4',
extras_require=extras_require,
py_modules=['web3', 'ens', 'ethpm'],
entry_points={"pytest11": ["pytest_ethereum = web3.tools.pytest_ethereum.plugins"]},
license="MIT",
zip_safe=False,
keywords='ethereum',
packages=find_packages(exclude=["tests", "tests.*"]),
package_data={"web3": ["py.typed"]},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)