forked from mbabineau/pingdom-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·21 lines (19 loc) · 855 Bytes
/
setup.py
File metadata and controls
executable file
·21 lines (19 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name='pingdom',
version="0.3.0",
description='Pingdom Library',
long_description="""3rd-party Python interface to Pingdom's REST API.""",
author='Mike Babineau',
author_email='michael.babineau@gmail.com',
install_requires=[ 'requests>=0.10.8', 'simplejson'],
url='https://github.com/mbabineau/pingdom-python',
packages=['pingdom'],
license='Apache v2.0',
platforms='Posix; MacOS X; Windows',
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: System :: Monitoring', ],
)