forked from lagerfeuer/cryptocompare
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 640 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 640 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
with open('README.md', encoding="utf-8") as f:
readme = f.read()
setup(
name='cryptocompare',
version='0.7.5',
description='Wrapper for CryptoCompare.com',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/lagerfeuer/cryptocompare',
author='lagerfeuer',
author_email='lukas.deutz@mailfence.com',
keywords='crypto cryptocurrency wrapper cryptocompare',
license='MIT',
python_requires='>=3',
packages=['cryptocompare'],
classifiers=['Programming Language :: Python :: 3'],
install_requires=['requests']
)