#!/usr/bin/env python from setuptools import setup, find_packages install_requires = [ 'bintrees==2.0.7', 'requests==2.13.0', 'six==1.10.0', 'websocket-client==0.40.0', ] setup( name = 'GDAX', version = '0.2.2', author = 'Daniel Paquin', author_email = 'dpaq34@gmail.com', license='MIT', url = 'https://github.com/danpaquin/GDAX-Python', packages = find_packages(), install_requires = install_requires, description = 'The unofficial Python client for the GDAX API', download_url = 'https://github.com/danpaquin/GDAX-Python/archive/master.zip', keywords = ['gdax', 'gdax-api', 'orderbook', 'trade', 'bitcoin', 'ethereum', 'BTC', 'ETH', 'client', 'api', 'wrapper', 'exchange', 'crypto', 'currency', 'trading', 'trading-api', 'coinbase'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Intended Audience :: Financial and Insurance Industry', 'Intended Audience :: Information Technology', 'Topic :: Software Development :: Libraries :: Python Modules', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', ], )