forked from jimbrowne/pynagios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 976 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
28
29
from setuptools import setup
# Get the long description by reading the README
try:
readme_content = open("README.rst").read()
except:
readme_content = ""
# Create the actual setup method
setup(name='pynagios',
version='0.1.2-dev',
description='Python library to write Nagios plugins.',
long_description=readme_content,
author='Mitchell Hashimoto',
author_email='[email protected]',
maintainer='Mitchell Hashimoto',
maintainer_email='[email protected]',
url="https://kiip.github.com/pynagios/",
license="MIT License",
keywords=["nagios", "pynagios", "monitoring"],
packages=['pynagios'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: System :: Systems Administration"]
)