-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
25 lines (23 loc) · 878 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
from setuptools import find_packages, setup
with open("requirements.txt", "r") as f:
requirements = list(map(str.strip, f.read().split("\n")))[:-1]
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="bobthebuidlerdefi@gmail.com",
url="https://github.com/BobTheBuidler/ypricemagic",
license="MIT",
install_requires=requirements,
setup_requires=[
"setuptools_scm",
],
package_data={"y": ["py.typed"]},
)