forked from logpai/Drain3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.18 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
# SPDX-License-Identifier: MIT
from os import path
from setuptools import setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='drain3',
packages=['drain3'],
version="0.9.10",
license='MIT',
description="Persistent & streaming log template miner",
long_description=long_description,
long_description_content_type="text/markdown",
author="IBM Research Haifa",
author_email="[email protected]",
url="https://github.com/IBM/Drain3",
download_url='https://github.com/IBM/Drain3/archive/v_01.tar.gz',
keywords=['drain', 'log', 'parser', 'IBM', 'template', 'logs', 'miner'],
install_requires=[
'jsonpickle==1.5.1', 'cachetools==4.2.1'
],
extras_require={
"kafka": ['kafka-python==2.0.1'],
"redis": ['redis==3.5.3'],
},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
],
)