-
Notifications
You must be signed in to change notification settings - Fork 104
/
setup.py
executable file
·48 lines (45 loc) · 1.77 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
#!/usr/bin/env python
# -*- coding: latin-1 -*-
#
# Copyright 2009-2022 Ghent University
#
# This file is part of logstash-patterns,
# originally created by the HPC team of Ghent University (http://ugent.be/hpc/en),
# with support of Ghent University (http://ugent.be/hpc),
# the Flemish Supercomputer Centre (VSC) (https://vscentrum.be/nl/en),
# the Hercules foundation (http://www.herculesstichting.be/in_English)
# and the Department of Economy, Science and Innovation (EWI) (http://www.ewi-vlaanderen.be/en).
#
# http://github.com/hpcugent/logstash-patterns
#
# logstash-patterns is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation v2.
#
# logstash-patterns is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with logstash-patterns. If not, see <http://www.gnu.org/licenses/>.
#
"""Basic setup.py for building the logstash grok patterns"""
import sys
import os
from distutils.core import setup
import glob
setup(
name="logstash-patterns",
version="3.0.0",
description="Grok patterns for vector (JSON formatted)",
long_description="""Grok patterns for parsing log messages with vector.
Can be debugged on https://grokdebug.herokuapp.com/ or via the runtest.py in tests subdirectory
""",
license="LGPL",
author="HPC UGent",
author_email="[email protected]",
# keep MANIFEST.in in sync (EL6 packaging issue)
data_files=[("/usr/share/vector", glob.glob("files/*"))],
url="http://www.ugent.be/hpc",
)