Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9123281
setup.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
setup.py
View Options
#!/usr/bin/env python
'''The setup and build script for the statusio-python library.'''
import
os
from
setuptools
import
setup
,
find_packages
def
read
(
*
paths
):
"""Build a file path from *paths* and return the contents."""
with
open
(
os
.
path
.
join
(
*
paths
),
'r'
)
as
f
:
return
f
.
read
()
setup
(
name
=
'statusio-python'
,
version
=
'1.1'
,
author
=
'Status.io'
,
author_email
=
'hello@status.io'
,
license
=
'Apache License 2.0'
,
url
=
'https://github.com/statusio/statusio-python'
,
keywords
=
'status.io api statusio'
,
description
=
'A Python wrapper around the Status.io API'
,
long_description
=
(
read
(
'README.rst'
)),
packages
=
find_packages
(
exclude
=
[
'tests*'
]),
install_requires
=
[
'future'
,
'requests'
],
classifiers
=
[
'Development Status :: 5 - Production/Stable'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: Apache Software License'
,
'Operating System :: OS Independent'
,
'Topic :: Software Development :: Libraries :: Python Modules'
,
'Topic :: Internet'
,
'Programming Language :: Python'
,
'Programming Language :: Python :: 2'
,
'Programming Language :: Python :: 2.7'
,
],
)
File Metadata
Details
Attached
Mime Type
text/x-python
Expires
Sat, Jun 21, 5:15 PM (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3391282
Attached To
rPSTATIO python3-statusio
Event Timeline
Log In to Comment