]> gitweb.michael.orlitzky.com - dead/check_openvpn-simple.git/blob - setup.py
Replace GPL-3 with AGPL-3, and update the project URL.
[dead/check_openvpn-simple.git] / setup.py
1 from distutils.core import setup
2
3 setup(
4 name = 'check_openvpn-simple',
5 version = '0.0.1',
6 author = 'Michael Orlitzky',
7 author_email = 'michael@orlitzky.com',
8 url = 'http://michael.orlitzky.com/code/check_openvpn-simple.xhtml',
9 scripts = ['bin/check_openvpn-simple'],
10 description = 'A Nagios plugin for checking whether' +
11 'or not an OpenVPN server is alive.',
12 long_description=open('README.txt').read(),
13 license = 'LICENSE.txt',
14 requires = 'argparse'
15 )