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
20 lines (18 loc) · 642 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
with open('README.rst', encoding="utf-8") as f:
readme = f.read()
setup(
name='cryptocompare',
version='0.3',
description='Wrapper for CryptoCompare.com',
long_description=readme,
url='https://github.com/lagerfeuer/cryptocompare',
author='lagerfeuer',
author_email='lukas.deutz@tuta.io',
keywords='crypto cryptocurrency wrapper cryptocompare',
license='MIT',
python_requires='>=3',
packages=['cryptocompare'],
classifiers=['Programming Language :: Python :: 3'],
install_requires=['requests']
)