-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (36 loc) · 1.15 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
import setuptools, os
readme_path = 'README.md'
if os.path.exists(readme_path):
with open(readme_path, 'r') as f:
long_description = f.read()
else:
long_description = 'web3_multicall'
setuptools.setup(
name='web3_multicall',
version='0.0.7',
author='Kristóf-Attila Kovács',
description='web3_multicall',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/kkristof200/py_web3_multicall',
packages=setuptools.find_packages(),
install_requires=[
'eth-abi>=2.1.1',
'eth-utils>=1.10.0',
'jsoncodable>=0.1.7',
'kw3>=0.0.16',
'web3>=5.23.1',
'web3-wrapped-contract>=0.0.15'
],
classifiers=[
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.4',
)