-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·40 lines (34 loc) · 1.19 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
36
37
38
39
40
# -*- coding:utf-8 -*-
""" Setup file."""
import os
import setuptools
exclude = ['.mypy*', '.idea*', 'build*', '{}.egg-info*'.format(__package__), 'dist*', 'venv*', 'docs*', 'lab*']
keywords = ['altcoins', 'altcoin', 'exchange', 'mining', 'cryptocompare', 'crypto', 'compare', 'api', 'wrapper']
root_dir = os.path.dirname(__file__)
readme_file = os.path.join(root_dir, 'README.md')
long_description = str()
if os.path.isfile(readme_file):
with open(readme_file) as fp:
long_description = fp.read()
setuptools.setup(
name='cryptocmpy',
version='0.1.2',
packages=setuptools.find_packages(exclude=exclude),
url='github.com/havocesp/cryptocmpy',
license='UNLICENSE',
keywords=keywords,
author='Daniel J. Umpierrez',
author_email='[email protected]',
long_description=long_description,
description='Python 3 "CryptoCompare" site API wrapper.',
classifiers=[
'Development Status :: 5 - Production',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=[
'requests'
]
)