-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
31 lines (28 loc) · 1.19 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
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md'), encoding='utf-8') as fh:
long_description = '\n' + fh.read()
setup(
name='py-eth-async',
version='1.10.4',
license='Apache-2.0',
author='SecorD',
description='',
long_description_content_type='text/markdown',
long_description=long_description,
packages=find_packages(),
install_requires=[
'aiohttp-socks==0.8.0', 'aiohttp==3.9.3', 'eth-account==0.8.0',
'evmdasm @ git+https://github.com/SecorD0/evmdasm@e8389f223746a0d8c94c627397d0dc639633e869',
'fake-useragent', 'pretty-utils @ git+https://github.com/SecorD0/pretty-utils@main', 'PySocks==1.7.1',
'python-dotenv==0.21.1', 'web3 @ git+https://github.com/ethereum/[email protected]'
],
keywords=[
'eth', 'pyeth', 'py-eth', 'ethpy', 'eth-py', 'web3', 'pyweb3', 'py-web3', 'web3py', 'web3-py', 'async-eth',
'pyethasync', 'py-eth-async', 'asyncethpy', 'async-eth-py', 'async-web3', 'pyweb3-async', 'py-web3-async',
'async-web3py', 'async-web3-py'
],
classifiers=[
'Programming Language :: Python :: 3.8'
]
)