FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sendwithus_python/setup.py at master · jay3686/sendwithus_python · GitHub
jay3686
/
sendwithus_python
Public
forked from
sendwithus/sendwithus_python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
sendwithus_python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
29 lines (27 loc) · 851 Bytes
Breadcrumbs
sendwithus_python
/
setup.py
Copy path
File metadata and controls
executable file
·
29 lines (27 loc) · 851 Bytes
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
from
distutils
.
core
import
setup
from
setuptools
import
find_packages
with
open
(
'README.md'
)
as
fp
:
long_description
=
fp
.
read
()
setup
(
name
=
'sendwithus'
,
version
=
'1.0.19'
,
author
=
'sendwithus'
,
author_email
=
'us@sendwithus.com'
,
packages
=
find_packages
(),
scripts
=
[],
url
=
'https://github.com/sendwithus/sendwithus_python'
,
license
=
'LICENSE.txt'
,
description
=
'Python API client for sendwithus.com'
,
long_description
=
long_description
,
test_suite
=
"sendwithus.test"
,
install_requires
=
[
"requests >= 1.1.0"
],
classifiers
=
[
"Programming Language :: Python :: 2"
,
"Programming Language :: Python :: 2.7"
,
"License :: OSI Approved :: Apache Software License"
,
"Development Status :: 5 - Production/Stable"
,
"Topic :: Communications :: Email"
]
)
Back
|
FazBrowse Home
|
New Git URL