-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 821 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 821 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
40
[project]
name = "soroka"
version = "0.1.0"
description = "Telegram-bot knowledge base for forwarded content"
requires-python = ">=3.12"
dependencies = [
"python-telegram-bot[ext]==22.*",
"httpx==0.27.*",
"pydantic==2.*",
"trafilatura==1.12.*",
"pypdf==4.*",
"python-docx==1.*",
"openpyxl==3.*",
"pytesseract==0.3.*",
"Pillow==10.*",
"sqlite-vec==0.1.*",
"mcp==1.*",
"python-dotenv==1.*",
"pyyaml==6.*",
]
[project.optional-dependencies]
dev = [
"pytest==8.*",
"pytest-asyncio==0.23.*",
"pytest-httpx==0.30.*",
"freezegun==1.*",
"reportlab==4.*",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]