-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (84 loc) · 2.13 KB
/
Copy pathpyproject.toml
File metadata and controls
92 lines (84 loc) · 2.13 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[tool.poetry]
name = "ciberlab-report-generator"
version = "3.0.0"
description = "Ciberlab Project contains multiple malware samples dynamic analysis. In this project, analysis output will be sliced and processed to generate human readable pdf reports."
license = "CC-BY-NC-SA-4.0"
authors = ["Grupo de Robotica"]
readme = "README.md"
packages = [
{ include = "ciberlabreport", from = "src" }
]
[tool.poetry.dependencies]
python = ">=3.12,<4"
alabaster = "1.0.0"
annotated-types = "0.7.0"
anyio = "4.11.0"
babel = "2.17.0"
certifi = "2025.10.5"
charset-normalizer = "3.4.4"
distro = "1.9.0"
docutils = "0.21.2"
h11 = "0.16.0"
httpcore = "1.0.9"
httpx = "0.28.1"
huggingface-hub = "^1.3.4"
idna = "3.11"
imagesize = "1.4.1"
jinja2 = "3.1.6"
jiter = "0.11.1"
markupsafe = "3.0.3"
openai = "2.6.0"
pillow = "12.0.0"
pydantic = "2.12.3"
pydantic-core = "2.41.4"
pygments = "2.19.2"
reportlab = "4.4.4"
requests = ">=2.32.4,<2.33.0"
roman-numerals-py = "3.1.0"
sniffio = "1.3.1"
tqdm = "4.67.1"
typing-inspection = "0.4.2"
typing-extensions = "4.15.0"
urllib3 = "2.5.0"
python-dotenv = "^1.2.1"
graphviz = "^0.21"
imagehash = "^4.3.2"
langchain = "^1.2.3"
langchain-openai = "^1.1.7"
langchain-community = "^0.4.1"
vt-py = "^0.22.0"
pyyaml = "^6.0.3"
mysql-connector-python = "^9.6.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.0"
pytest-cov = "^5.0.0"
ruff = "^0.6.0"
black = "^24.0.0"
sphinx = "^8.2.0"
sphinx-autobuild = "^2024.10.0"
sphinxcontrib-applehelp = "^2.0.0"
sphinxcontrib-devhelp = "^2.0.0"
sphinxcontrib-htmlhelp = "^2.1.0"
sphinxcontrib-jsmath = "^1.0.1"
sphinxcontrib-qthelp = "^2.0.0"
sphinxcontrib-serializinghtml = "^2.0.0"
sphinx-rtd-theme = "^3.0.2"
deptry = "^0.24.0"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["test"]
addopts = "-q --maxfail=1"
[tool.ruff]
line-length = 100
target-version = "py312"
lint.select = ["E", "F", "I"]
lint.ignore = ["E203", "E266", "E501", "E402"]
[tool.ruff.lint.isort]
known-first-party = ["ciberlabreport"]
combine-as-imports = true
[tool.black]
line-length = 100
target-version = ["py312"]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"