-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.48 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
[tool.poetry]
name = "logdetective"
version = "0.2.10"
description = "Log using LLM AI to search for build/test failures and provide ideas for fixing these."
authors = ["Jiri Podivin <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
include = ["logdetective/drain3.ini"]
packages = [
{ include = "logdetective" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Debuggers",
"Topic :: Internet :: Log Analysis"
]
[tool.poetry.urls]
homepage = "https://github.com/fedora-copr/logdetective"
issues = "https://github.com/fedora-copr/logdetective/issues"
[tool.poetry.dependencies]
python = "^3.11"
requests = ">0.2.31"
llama-cpp-python = ">0.2.56,!=0.2.86"
drain3 = "^0.9.11"
huggingface-hub = ">0.23.2"
# rawhide has numpy 2, F40 and F41 are still on 1.26
# we need to support both versions
numpy = ">=1.26.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
logdetective = 'logdetective.logdetective:main'
[tool.poetry.extras]
server = ["fastapi", "pydantic"]
[tool.pylint]
disable = [
"inconsistent-return-statements",
"missing-module-docstring",
"too-few-public-methods",
"unspecified-encoding",
]