forked from dominiktraxl/pykrakenapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.77 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
41
42
43
44
# This file is part of pykrakenapi.
#
# pykrakenapi is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# pykrakenapi is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser
# General Public LICENSE along with pykrakenapi. If not, see
# <http://www.gnu.org/licenses/lgpl-3.0.txt> and
# <http://www.gnu.org/licenses/gpl-3.0.txt>.
from setuptools import setup, find_packages
setup(
name="pykrakenapi",
version='0.3.1',
packages=find_packages(),
author="Dominik Traxl",
author_email="[email protected]",
url='https://github.com/dominiktraxl/pykrakenapi/',
download_url='https://github.com/dominiktraxl/pykrakenapi/tarball/v0.3.1',
description=("A Python implementation of the Kraken API."),
long_description=open('README.rst').read(),
python_requires='>=3',
install_requires=['krakenex>=2.0.0',
'pandas'],
license="GNU GPL",
classifiers=[
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules'],
package_data={'pykrakenapi': ['../LICENSE.txt',
'../README.rst']},
)