-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (50 loc) · 1.82 KB
/
setup.py
File metadata and controls
52 lines (50 loc) · 1.82 KB
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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name='Web3Scout',
version='0.0.8',
description='Onchain Event Framework for DeFiPy',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/defipy-devs/web3scout',
author = "icmoore",
author_email = "defipy.devs@gmail.com",
license="Apache-2.0",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
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.token.fetch",
"web3scout.contract",
"web3scout.uniswap_v2"
],
install_requires=['web3',
'eth_abi',
'eth_typing',
'eth_tester',
'eth_bloom',
'eth_utils',
'web3-ethereum-defi',
'hexbytes',
'pandas',
'defipy >= 1.0.8'
],
include_package_data=True,
zip_safe=False,
)