-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (45 loc) · 1.33 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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name="pachira-python",
version="0.0.3",
description="Python library for Pachira on DeFi, data research and integration",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SYS-Labs",
author="icmoore",
author_email="[email protected]",
license="MIT",
package_dir = {"pachira": "python/prod"},
packages=[
"pachira",
"pachira.event",
"pachira.event.tools",
"pachira.event.process",
"pachira.abi",
"pachira.utils",
"pachira.data",
"pachira.enums",
"pachira.token",
"pachira.contract",
"pachira.uniswap_v2",
"pachira.ipool.calc",
"pachira.ipool.data",
"pachira.ipool.exchg",
"pachira.ipool.types",
"pachira.ipool.utils",
"pachira.ipool.tree"
],
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,
)