forked from resy/coinbase_python3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 867 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
# ----- Imports ---------------------------------------------------------------
from distutils.core import setup
# ----- Instructions ----------------------------------------------------------
setup(
name = 'coinbase',
version = '0.3.0',
packages = ['coinbase'],
url = 'https://github.com/resy/coinbase_python3',
license = 'MIT',
author = 'Michael Montero',
author_email = '[email protected]',
description = 'Python3 Coinbase API',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)