FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-http-client/setup.py at master · CodingSta/python-http-client · GitHub
CodingSta
/
python-http-client
Public
forked from
sendgrid/python-http-client
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
python-http-client
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
35 lines (31 loc) · 1.01 KB
Breadcrumbs
python-http-client
/
setup.py
Copy path
File metadata and controls
executable file
·
35 lines (31 loc) · 1.01 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
import
os
from
setuptools
import
setup
long_description
=
'Please see our GitHub README'
if
os
.
path
.
exists
(
'README.txt'
):
long_description
=
open
(
'README.txt'
).
read
()
base_url
=
'https://github.com/sendgrid/'
version
=
'3.1.0'
setup
(
name
=
'python_http_client'
,
version
=
version
,
author
=
'Elmer Thomas'
,
author_email
=
'dx@sendgrid.com'
,
url
=
'{}python-http-client'
.
format
(
base_url
),
download_url
=
'{}python-http-client/tarball/{}'
.
format
(
base_url
,
version
),
packages
=
[
'python_http_client'
],
license
=
'MIT'
,
description
=
'HTTP REST client, simplified for Python'
,
long_description
=
long_description
,
keywords
=
[
'REST'
,
'HTTP'
,
'API'
],
python_requires
=
'>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'
,
classifiers
=
[
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
]
)
Back
|
FazBrowse Home
|
New Git URL