-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (28 loc) · 797 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
32
33
34
35
36
37
#! /usr/bin/python
# __author__ = 'sadaqatullah'
import os
from distutils.core import setup
setup(
# Application name:
name="check_gunicorn",
# Version number (initial):
version="0.0.3.6",
# Application author details:
author="Sadaqatullah",
author_email="[email protected]",
# Include additional files into the package
include_package_data=True,
# Details
url="https://pypi.python.org/pypi/check_gunicorn",
#
# license="LICENSE.txt",
description="Check for Gunicorn in Nagios",
# long_description=open("README.txt").read(),
# Dependent packages (distributions)
install_requires=[
"elasticsearch",
"nagiosplugin",
],
scripts = ["check_gunicorn.py"],
# script_name= os.getcwd()
)