|
7 | 7 |
|
8 | 8 |
|
9 | 9 | extras_require = {
|
10 |
| - 'lint': [ |
11 |
| - 'black>=22,<23', |
12 |
| - 'flake8>=3.5.0,<4.0.0', |
| 10 | + "lint": [ |
| 11 | + "black>=22,<23", |
| 12 | + "flake8>=3.5.0,<4.0.0", |
13 | 13 | ],
|
14 |
| - 'test': [ |
15 |
| - 'pytest>=6.2.5,<7', |
16 |
| - 'pytest-xdist>=2.0.0,<3', |
17 |
| - 'eth-hash[pycryptodome]>=0.1.4,<1.0.0', |
| 14 | + "test": [ |
| 15 | + "pytest>=6.2.5,<7", |
| 16 | + "pytest-xdist>=2.0.0,<3", |
| 17 | + "eth-hash[pycryptodome]>=0.1.4,<1.0.0", |
18 | 18 | ],
|
19 |
| - 'dev': [ |
20 |
| - 'bumpversion>=0.5.3,<1.0.0', |
21 |
| - 'tox>=2.9.1,<3.0.0', |
22 |
| - 'wheel>=0.30.0,<1.0.0', |
| 19 | + "dev": [ |
| 20 | + "bumpversion>=0.5.3,<1.0.0", |
| 21 | + "tox>=2.9.1,<3.0.0", |
| 22 | + "wheel>=0.30.0,<1.0.0", |
23 | 23 | ],
|
24 |
| - 'py-evm': [ |
| 24 | + "py-evm": [ |
25 | 25 | # Pin py-evm to exact version, until it leaves alpha.
|
26 | 26 | # EVM is very high velocity and might change API at each alpha.
|
27 | 27 | "py-evm==0.5.0a3",
|
28 | 28 | "eth-hash[pysha3]>=0.1.4,<1.0.0;implementation_name=='cpython'",
|
29 | 29 | "eth-hash[pycryptodome]>=0.1.4,<1.0.0;implementation_name=='pypy'",
|
30 | 30 | ],
|
31 |
| - 'docs': [ |
32 |
| - 'towncrier==18.5.0', |
33 |
| - ] |
| 31 | + "docs": [ |
| 32 | + "towncrier==18.5.0", |
| 33 | + ], |
34 | 34 | }
|
35 | 35 |
|
36 |
| -extras_require['dev'] = ( |
37 |
| - extras_require['dev'] + |
38 |
| - extras_require['test'] + |
39 |
| - extras_require['py-evm'] + |
40 |
| - extras_require['lint'] + |
41 |
| - extras_require['docs'] |
| 36 | +extras_require["dev"] = ( |
| 37 | + extras_require["dev"] |
| 38 | + + extras_require["test"] |
| 39 | + + extras_require["py-evm"] |
| 40 | + + extras_require["lint"] |
| 41 | + + extras_require["docs"] |
42 | 42 | )
|
43 | 43 | # convenience in case someone leaves out the `-`
|
44 |
| -extras_require['pyevm'] = extras_require['py-evm'] |
| 44 | +extras_require["pyevm"] = extras_require["py-evm"] |
45 | 45 |
|
46 |
| -with open('./README.md') as readme: |
| 46 | +with open("./README.md") as readme: |
47 | 47 | long_description = readme.read()
|
48 | 48 |
|
49 | 49 | setup(
|
50 |
| - name='eth-tester', |
| 50 | + name="eth-tester", |
51 | 51 | # *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
|
52 |
| - version='0.6.0-beta.6', |
| 52 | + version="0.6.0-beta.6", |
53 | 53 | description="""Tools for testing Ethereum applications.""",
|
54 | 54 | long_description=long_description,
|
55 |
| - long_description_content_type='text/markdown', |
56 |
| - author='Piper Merriam', |
57 |
| - |
58 |
| - url='https://github.com/ethereum/eth-tester', |
| 55 | + long_description_content_type="text/markdown", |
| 56 | + author="Piper Merriam", |
| 57 | + |
| 58 | + url="https://github.com/ethereum/eth-tester", |
59 | 59 | include_package_data=True,
|
60 | 60 | install_requires=[
|
61 | 61 | "eth-abi>=2.0.0b4,<3.0.0",
|
|
66 | 66 | "semantic_version>=2.6.0,<3.0.0",
|
67 | 67 | ],
|
68 | 68 | extras_require=extras_require,
|
69 |
| - python_requires='>=3.6.8,<4', |
70 |
| - py_modules=['eth_tester'], |
| 69 | + python_requires=">=3.6.8,<4", |
| 70 | + py_modules=["eth_tester"], |
71 | 71 | license="MIT",
|
72 | 72 | zip_safe=False,
|
73 |
| - keywords='ethereum', |
| 73 | + keywords="ethereum", |
74 | 74 | packages=find_packages(exclude=["tests", "tests.*"]),
|
75 | 75 | classifiers=[
|
76 |
| - 'Development Status :: 2 - Pre-Alpha', |
77 |
| - 'Intended Audience :: Developers', |
78 |
| - 'License :: OSI Approved :: MIT License', |
79 |
| - 'Natural Language :: English', |
80 |
| - 'Programming Language :: Python :: 3', |
81 |
| - 'Programming Language :: Python :: 3.7', |
82 |
| - 'Programming Language :: Python :: 3.8', |
83 |
| - 'Programming Language :: Python :: 3.9', |
84 |
| - 'Programming Language :: Python :: 3.10', |
| 76 | + "Development Status :: 2 - Pre-Alpha", |
| 77 | + "Intended Audience :: Developers", |
| 78 | + "License :: OSI Approved :: MIT License", |
| 79 | + "Natural Language :: English", |
| 80 | + "Programming Language :: Python :: 3", |
| 81 | + "Programming Language :: Python :: 3.7", |
| 82 | + "Programming Language :: Python :: 3.8", |
| 83 | + "Programming Language :: Python :: 3.9", |
| 84 | + "Programming Language :: Python :: 3.10", |
85 | 85 | ],
|
86 | 86 | )
|
0 commit comments