-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 995 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 995 Bytes
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
[tool.poetry]
name = "autocvss"
version = "0.1.0"
description = "AutoCVSS: Assessing the Performance of LLMs for Automated Software Vulnerability Scoring"
authors = ["Davide Sanvito <davide.sanvito@neclab.eu>", "Giuseppe Siracusano <giuseppe.siracusano@neclab.eu>", "Roberto Bifulco <roberto.bifulco@neclab.eu>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
instructor = "^1.7.2"
langfuse = "^2.59.3"
pandas = "^2.2.3"
cvss = "^3.4"
tqdm = "^4.67.1"
ipywidgets = "^8.1.5"
scikit-learn = "^1.6.1"
nbconvert = "^7.16.6"
sentence-transformers = "^3.4.1"
chromadb = "^0.6.3"
matplotlib = "^3.10.1"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
pre-commit = "^3.7.1"
setuptools = "^71.1.0"
tox = "^4.16.0"
nbqa = "^1.8.5"
black = "^24.4.2"
flake8 = "^7.1.0"
isort = "^5.13.2"
mypy = "^1.11.0"
pyupgrade = "^3.16.0"
pre-commit-hooks = "^4.6.0"
types-requests = "^2.32.0.20240712"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"