forked from coinbase/coinbase-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (40 loc) · 1.6 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
# coding: utf-8
import os
from setuptools import setup
import coinbase.wallet
README = open(os.path.join(os.path.dirname(__file__), 'PYPIREADME.rst')).read()
REQUIREMENTS = [
line.strip() for line in open(os.path.join(os.path.dirname(__file__),
'requirements.txt')).readlines()]
setup(
name='coinbase',
version=coinbase.wallet.__version__,
packages=['coinbase', 'coinbase.wallet'],
include_package_data=True,
license='Apache 2.0',
description='Coinbase API client library',
long_description=README,
url='https://github.com/scottdchris/coinbase-python/',
download_url='https://github.com/scottdchris/coinbase-python/tarball/%s' % (
coinbase.wallet.__version__),
keywords=['api', 'coinbase', 'bitcoin', 'oauth2', 'client'],
install_requires=REQUIREMENTS,
author='Chris Scott',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)