forked from gforcada/haproxy_log_analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (41 loc) · 1.35 KB
/
setup.py
File metadata and controls
46 lines (41 loc) · 1.35 KB
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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = '4.1.1.dev0'
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 :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: Log Analysis',
],
keywords='haproxy log analysis report',
author='Gil Forcada',
author_email='gil.gnome@gmail.com',
url='https://github.com/gforcada/haproxy_log_analysis',
license='GPL v3',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['setuptools'],
python_requires='>=3.6',
entry_points={
'console_scripts': ['haproxy_log_analysis = haproxy.main:console_script']
},
)