-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.16 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
[project]
name = "reports-gen"
version = "0.1.0"
description = "ИИ агент для автоматического создания отчетов"
authors = [
{name = "paranoik1", email = "paranoik@noreplay.com"}
]
requires-python = ">=3.13,<3.14"
dependencies = [
"ollama (>=0.6.1,<0.7.0)",
"python-docx (>=1.2.0,<2.0.0)",
"python-dotenv (>=1.2.1,<2.0.0)",
"bs4 (>=0.0.2,<0.0.3)",
"markdown (>=3.10.2,<4.0.0)",
"flask (>=3.1.3,<4.0.0)",
"pypdf (>=6.7.4,<7.0.0)",
"pandoc (>=2.4,<3.0)",
"pypandoc (>=1.16.2,<2.0.0)",
"openai (>=2.24.0,<3.0.0)",
"rapidfuzz (>=3.0.0,<4.0.0)",
"pydantic (>=2.12.5,<3.0.0)",
"pydantic-settings (>=2.0.0,<3.0.0)",
"jinja2 (>=3.1.6,<4.0.0)",
"structlog (>=25.5.0,<26.0.0)",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"mypy (>=1.19.1,<2.0.0)",
"pytest (>=9.0.2,<10.0.0)",
"pre-commit (>=4.5.1,<5.0.0)",
"black (>=26.3.1,<27.0.0)",
"isort (>=8.0.1,<9.0.0)",
"ipykernel (>=7.2.0,<8.0.0)",
"debugpy (>=1.8.20,<2.0.0)",
"rich (>=14.3.3,<15.0.0)"
]
[tool.isort]
profile = "black"