FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sendgrid-python/setup.py at master · codevbus/sendgrid-python · GitHub
codevbus
/
sendgrid-python
Public
forked from
sendgrid/sendgrid-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
sendgrid-python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (38 loc) · 1.32 KB
Breadcrumbs
sendgrid-python
/
setup.py
Copy path
File metadata and controls
43 lines (38 loc) · 1.32 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
38
39
40
41
42
43
import
sys
import
os
from
setuptools
import
setup
,
find_packages
__version__
=
None
with
open
(
'sendgrid/version.py'
)
as
f
:
exec
(
f
.
read
())
long_description
=
'Please see our GitHub README'
if
os
.
path
.
exists
(
'README.txt'
):
long_description
=
open
(
'README.txt'
).
read
()
def
getRequires
():
deps
=
[
'python_http_client>=3.0'
]
if
sys
.
version_info
<
(
2
,
7
):
deps
.
append
(
'unittest2'
)
elif
(
3
,
0
)
<=
sys
.
version_info
<
(
3
,
2
):
deps
.
append
(
'unittest2py3k'
)
return
deps
setup
(
name
=
'sendgrid'
,
version
=
str
(
__version__
),
author
=
'Elmer Thomas, Yamil Asusta'
,
author_email
=
'dx@sendgrid.com'
,
url
=
'https://github.com/sendgrid/sendgrid-python/'
,
packages
=
find_packages
(
exclude
=
[
"temp*.py"
,
"register.py"
,
"test"
]),
include_package_data
=
True
,
license
=
'MIT'
,
description
=
'SendGrid library for Python'
,
long_description
=
long_description
,
install_requires
=
getRequires
(),
classifiers
=
[
'Programming Language :: Python :: 2.6'
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3.2'
,
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
]
)
Back
|
FazBrowse Home
|
New Git URL