-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·27 lines (24 loc) · 958 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
26
27
#!/usr/bin/env python
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError, RuntimeError):
long_description = open('README.md').read()
setup(name='kaikobittrex',
version='1.0.3',
packages=find_packages(),
description='Python bindings for Kaiko Bittrex Historical trade data',
long_description=long_description,
author='Dimitrios Kouzis-Loukas',
author_email='[email protected]',
url='https://github.com/lookfwd/python-kaiko-bittrex',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable',
'Topic :: Office/Business :: Financial',
],
test_suite="kaikobittrex.tests")