FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
coinbase-python/setup.py at master · george-cpp/coinbase-python · GitHub
george-cpp
/
coinbase-python
Public
forked from
GauthamramRavichandran/coinbase-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
coinbase-python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
37 lines (35 loc) · 1.43 KB
Breadcrumbs
coinbase-python
/
setup.py
Copy path
File metadata and controls
37 lines (35 loc) · 1.43 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
# coding: utf-8
import
os
from
setuptools
import
setup
import
pycoinbaseapi
.
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
=
'pycoinbaseapi'
,
version
=
pycoinbaseapi
.
wallet
.
__version__
,
packages
=
[
'pycoinbaseapi'
,
'pycoinbaseapi.wallet'
],
include_package_data
=
True
,
license
=
'Apache 2.0'
,
description
=
'Coinbase API client library'
,
long_description
=
README
,
url
=
'https://github.com/GauthamramRavichandran/coinbase-python'
,
download_url
=
'https://github.com/GauthamramRavichandran/coinbase-python/tarball/%s'
%
(
pycoinbaseapi
.
wallet
.
__version__
),
keywords
=
[
'api'
,
'coinbase'
,
'bitcoin'
,
'oauth2'
,
'client'
],
install_requires
=
REQUIREMENTS
,
author
=
'Gauthamram Ravichandran'
,
author_email
=
'api@coinbase.com'
,
classifiers
=
[
'Intended Audience :: Developers'
,
'License :: OSI Approved :: MIT License'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python'
,
'Topic :: Software Development :: Libraries :: Python Modules'
,
],
)
Back
|
FazBrowse Home
|
New Git URL