-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (29 loc) · 1012 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
30
31
from setuptools import setup
# Get the long description by reading the README
try:
readme_content = open("README.rst").read()
except Exception as e:
readme_content = ""
# Create the actual setup method
setup(
name="pycinga",
version="1.0.0",
description="Python library to write Icinga plugins.",
long_description=readme_content,
author="Steve McMaster",
author_email="[email protected]",
maintainer="Steve McMaster",
maintainer_email="[email protected]",
url="https://github.com/hurricanelabs/python-pycinga",
license="MIT License",
keywords=["nagios", "pynagios", "icinga", "pycinga", "monitoring"],
packages=["pycinga"],
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"
]
)