-
Notifications
You must be signed in to change notification settings - Fork 141
/
pyproject.toml
59 lines (50 loc) · 1.37 KB
/
pyproject.toml
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
56
57
58
59
[tool.poetry]
name = "drain3"
version = "0.9.11"
description = "Persistent & streaming log template miner"
authors = ["IBM Research Haifa <david.ohana@ibm.com>"]
maintainers = ["Yihao Chen(Superskyyy) <yihaochen@apache.org>"]
readme = "README.md"
license = "MIT"
keywords=['drain', 'log', 'parser', 'IBM', 'template', 'logs', 'miner']
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Topic :: System :: Monitoring',
"Topic :: Software Development :: Libraries",
]
packages = [
{ include = "drain3" },
]
exclude = ['tests', 'examples']
[tool.poetry.build]
generate-setup-file = true
[tool.poetry.dependencies]
python = "^3.7"
jsonpickle = "*"
cachetools = "*"
redis = { version = "*", optional = true }
kafka-python = { version = "*", optional = true }
[tool.poetry.extras]
all=[
'redis',
'kafka-python',
]
kafka= [
'kafka-python',
]
redis=[
'redis',
]
[tool.poetry.group.dev.dependencies]
mypy = "*"
types-cachetools = "*"
types-redis = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"