-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.27 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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name='Web3Scout',
version='0.0.3',
description='Python library for Web3 surveillance',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/defipy-devs/web3scout',
author = "icmoore",
author_email = "[email protected]",
license="MIT",
package_dir = {"web3scout": "python/prod"},
packages=[
"web3scout",
"web3scout.event",
"web3scout.event.tools",
"web3scout.event.process",
"web3scout.abi",
"web3scout.utils",
"web3scout.data",
"web3scout.enums",
"web3scout.token",
"web3scout.contract",
"web3scout.uniswap_v2"
],
install_requires=['web3',
'eth_abi',
'eth_typing',
'eth_tester',
'eth_bloom',
'eth_utils',
'web3-ethereum-defi',
'hexbytes',
'pandas'],
include_package_data=True,
zip_safe=False,
)