-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
executable file
·27 lines (24 loc) · 937 Bytes
/
setup.py
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
import sys
from setuptools import setup
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(name='pingdom',
version="0.2.1",
description='Pingdom Library',
long_description="""3rd-party Python interface to Pingdom's REST API.""",
author='Mike Babineau',
author_email='[email protected]',
install_requires=[ 'requests>=0.10.8' ],
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', ],
**extra
)