forked from BobTheBuidler/ypricemagic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1013 Bytes
/
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
from setuptools import find_packages, setup
setup(
name='ypricemagic',
packages=find_packages(),
use_scm_version={
"root": ".",
"relative_to": __file__,
"local_scheme": "no-local-version",
"version_scheme": "python-simplified-semver",
},
description='Use this tool to extract historical on-chain price data from an archive node. Shoutout to @bantg and @nymmrx for their awesome work on yearn-exporter that made this library possible.',
author='BobTheBuidler',
author_email='[email protected]',
url='https://github.com/BobTheBuidler/ypricemagic',
license='MIT',
install_requires=[
'async_lru==1.0.3',
'async_property==0.2.1',
'bobs_lazy_logging==0.0.4',
'cachetools>=4.1.1',
'checksum_dict>=1.1.1',
'dank_mids>=4.20.25',
'eth-brownie>=1.18.1,<1.20',
'eth_retry>=0.1.10,<0.2',
'joblib>=1.0.1',
],
setup_requires=[
'setuptools_scm',
],
)