- Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
27 lines (22 loc) · 645 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (22 loc) · 645 Bytes
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
# -*- coding: utf-8 -*-
fromsetuptoolsimportsetup, find_packages
importsys, os
__version__='0.1'
setup(name='haproxy',
version=__version__,
description="The haproxy client communicates with the haproxy stats socket.",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Environment :: Console",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='haproxy',
author='Remco Verhoef',
author_email='remco@red5.nl',
url='http://github.com/nl5887/python-haproxy',
license='MIT',
packages=['haproxy'],
)