-
Notifications
You must be signed in to change notification settings - Fork 233
/
setup.py
31 lines (27 loc) · 957 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
28
29
30
31
#!/usr/bin/env python3
import os.path
from distutils.core import setup
exec(open('./krakenex/version.py').read())
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='krakenex',
version=__version__,
description='kraken.com cryptocurrency exchange API',
long_description=read('README.rst'),
author='Noel Maersk',
author_email='[email protected]',
url=__url__,
install_requires=[
'requests>=2.18.2,<3'
],
packages=['krakenex'],
python_requires='>=3.3',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
],
)