-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
69 lines (64 loc) · 1.96 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
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "LogLead"
version = "1.2.1"
authors = [
{name = "Mika Mäntylä", email="[email protected]"},
{name = "Jesse Nyyssölä", email = "[email protected]"},
{name = "Yuqing Wang", email="[email protected]"},
{name = "Alexander Bakhtin", email = "[email protected]"}]
maintainers = [
{name = "Alexander Bakhtin", email = "[email protected]"}]
description = "LogLead stands for Log Loader, Enhancer, and Anomaly Detector"
readme = "PYPI_README.md"
license = {file = "LICENSE"}
keywords = [
"logs",
"anomaly detection",
"log parsing"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Logging"]
requires-python = ">=3.9,<3.13"
dependencies = [
"polars[numpy, pandas, pyarrow]>=1.5",
"scipy>=1.10.1",
'regex>=2023.10.3',
'drain3>=0.9.11',
'tipping>=0.1.3',
"scikit-learn>=1.2.2",
"xgboost>=1.7.3",
"python-dotenv>=1.0.1",
"pyyaml",
"psutil",
"jinja2",
"matplotlib",
"requests", #tests
"tqdm", #tests
"GitPython", #tests
"py7zr", #tests
"shap>=0.42.1", #explainer
"umap-learn>=0.5.6", #explainer
"plotly>=5.19.0", #explainer
"nbformat>=4.2.0", #explainer
"scikit-optimize>=0.10.1" #f1-score optimzer
]
[project.urls]
Homepage = "https://github.com/EvoTestOps/LogLead"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["loglead*"]