forked from ethereum/eth-abi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
91 lines (83 loc) · 2.32 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import (
setup,
find_packages,
)
def merge_lists(base_list, *other_lists):
new_list = base_list[:]
for other_list in other_lists:
new_list.extend(i for i in other_list if i not in new_list)
return new_list
HYPOTHESIS_REQUIREMENT = "hypothesis>=3.6.1"
extras_require = {}
extras_require['tools'] = [
HYPOTHESIS_REQUIREMENT,
]
extras_require['test'] = merge_lists(
[
"pytest==4.4.1",
"pytest-pythonpath>=0.7.1",
"pytest-xdist==1.22.3",
"tox>=2.9.1,<3",
"eth-hash[pycryptodome]",
HYPOTHESIS_REQUIREMENT,
],
extras_require['tools'],
)
extras_require['lint'] = [
"flake8==3.4.1",
"isort>=4.2.15,<5",
"mypy==0.620",
]
extras_require['doc'] = [
"Sphinx>=1.6.5,<2",
"sphinx_rtd_theme>=0.1.9",
]
extras_require['dev'] = merge_lists(
[
"bumpversion>=0.5.3,<1",
"pytest-watch>=4.1.0,<5",
"wheel",
"twine",
"ipython",
],
extras_require['test'],
extras_require['lint'],
extras_require['doc'],
)
setup(
name='eth-abi',
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
version='2.1.0',
description="""Ethereum ABI Utils""",
long_description_markdown_filename='README.md',
author='Piper Merriam',
author_email='[email protected]',
url='https://github.com/ethereum/eth-abi',
include_package_data=True,
install_requires=[
'eth-utils>=1.2.0,<2.0.0',
'eth-typing>=2.0.0,<3.0.0',
'parsimonious>=0.8.0,<0.9.0',
],
setup_requires=['setuptools-markdown'],
python_requires='>=3.6, <4',
extras_require=extras_require,
py_modules=['eth_abi'],
license="MIT",
zip_safe=False,
keywords='ethereum',
packages=find_packages(exclude=["tests", "tests.*"]),
package_data={'eth_abi': ['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.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
],
)