forked from neurogeek/haproxyctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 840 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
#!/usr/bin/env python
from distutils.core import setup
setup(name='haproxyctl',
version='0.5',
description='Tool to talk to HAProxy socket',
author='Jesus Rivero',
author_email='[email protected]',
url='http://github.com/neurogeek/',
license='GPL-3',
packages=['haproxy'],
scripts=['bin/haproxyctl'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Internet :: Proxy Servers',
'Topic :: System :: Systems Administration',
'Topic :: System :: Networking'],
test_suite="tests")