-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.py
37 lines (36 loc) · 1.11 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
from distutils.core import setup
setup(
name='coinbase',
version='0.2.1',
packages=['coinbase', 'coinbase.models'],
package_data={'coinbase': ['ca_certs.txt']},
url='https://github.com/sibblegp/coinbase_python',
license='MIT',
author='George Sibble',
author_email='[email protected]',
description='Integration Library for the Coinbase API',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'httplib2>=0.8',
'requests>=1.1.0',
'oauth2client>=1.1',
'python-dateutil>=2.2',
'enum34==1.0',
],
tests_require=[
'sure>=1.2.5',
'httpretty>=0.8.0',
'mock',
],
)