Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

Commit

Permalink
setup.py: new distutils setup script.
Browse files Browse the repository at this point in the history
  • Loading branch information
orlitzky committed Aug 14, 2018
1 parent bbe14a0 commit 98143aa
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from distutils.core import setup

setup(
name = 'nagios-icinga-openvpn',
version = '0.0.1',
author = 'Roland Wolters (liquidat)',
author_email = '[email protected]',
url = 'https://github.com/liquidat/nagios-icinga-openvpn',
scripts = ['bin/check_openvpn'],
description = 'Nagios/Icinga check for OpenVPN availability',
long_description=open('README.md').read(),
license = 'COPYING'
)

0 comments on commit 98143aa

Please sign in to comment.