forked from KennethWilke/PingdomLib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 760 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name='PingdomLib',
version='2.0.3',
author='Kenneth Wilke',
author_email='kenneth.wilke@rackspace.com',
packages=['pingdomlib'],
url='https://github.com/KennethWilke/PingdomLib',
license='ISC license',
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: OS Independent',
'Topic :: System :: Monitoring'],
description='A documented python library to consume the full pingdom API',
long_description=open('README.txt').read(),
install_requires=[
"requests >= 2.2.1"
],
)