forked from gforcada/haproxy_log_analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (50 loc) · 1.4 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = '0.0.3.post2'
description = 'Haproxy log analyzer that tries to gives an insight of ' \
'what\'s going on'
long_description = """{0}
{1}
""".format(
open('README.rst').read(),
open('CHANGES.rst').read(),
)
setup(
name='haproxy_log_analysis',
version=version,
description=description,
long_description=long_description,
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Internet :: Log Analysis',
],
keywords='haproxy log analysis report',
author='Gil Forcada',
author_email='gforcada@gnome.org',
url='https://github.com/gforcada/haproxy_log_analysis',
license='GPL v3',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
],
extras_require={
'test': [
'nose',
],
},
entry_points={
'console_scripts': [
'haproxy_log_analysis = haproxy.main:console_script',
],
},
test_suite='haproxy.tests',
)