FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sendwithus_python/setup.py at master · sendwithus/sendwithus_python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
sendwithus
/
sendwithus_python
Public
Notifications
You must be signed in to change notification settings
Fork
23
Star
31
Code
Issues
1
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
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
·
42 lines (39 loc) · 1.2 KB
Breadcrumbs
sendwithus_python
/
setup.py
Copy path
File metadata and controls
executable file
·
42 lines (39 loc) · 1.2 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
from
distutils
.
core
import
setup
from
setuptools
import
find_packages
from
io
import
open
with
open
(
'README.md'
,
encoding
=
"utf-8"
)
as
fp
:
long_description
=
fp
.
read
()
setup
(
name
=
'sendwithus'
,
version
=
'5.4.0'
,
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
,
long_description_content_type
=
'text/markdown'
,
test_suite
=
"sendwithus.test"
,
install_requires
=
[
"requests >= 2.0.0"
,
"six >= 1.9.0"
],
extras_require
=
{
"test"
: [
"pytest >= 3.0.5"
,
"pytest-xdist >= 1.15.0"
]
},
classifiers
=
[
"Programming Language :: Python :: 2"
,
"Programming Language :: Python :: 2.7"
,
"Programming Language :: Python :: 3"
,
"Programming Language :: Python :: 3.4"
,
"Programming Language :: Python :: 3.5"
,
"License :: OSI Approved :: Apache Software License"
,
"Development Status :: 5 - Production/Stable"
,
"Topic :: Communications :: Email"
]
)
Back
|
FazBrowse Home
|
New Git URL