forked from akure/defillama2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 1.05 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
#!/usr/bin/env python3
from setuptools import setup
VERSION = '0.7.5'
packages = ['defillama2']
requires = ['requests>=2.28.1', 'pandas>=1.4.4', 'numpy>=1.22.4']
with open('README.md', mode='r') as f:
readme = f.read()
setup(
name="defillama2",
version=VERSION,
description='Python client for DefiLlama API',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/coindataschool/defillama2',
author="Coin Data School",
author_email="<[email protected]>",
packages=packages,
install_requires=requires, # dependencies
keywords=['python 3', 'defillama', 'api'],
classifiers= [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)