-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 756 Bytes
/
pyproject.toml
File metadata and controls
34 lines (32 loc) · 756 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
[project]
name = "receiptory"
version = "1.2.0"
description = "Self-hosted receipt and invoice management system"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"python-multipart>=0.0.18",
"litellm>=1.60.0",
"PyMuPDF>=1.25.0",
"Pillow>=11.0.0",
"weasyprint>=63.0",
"bcrypt>=4.2.0",
"itsdangerous>=2.2.0",
"croniter>=6.0.0",
"python-telegram-bot>=21.0",
"httpx>=0.28.0",
"openpyxl>=3.1.0",
"beautifulsoup4>=4.12.0",
"playwright>=1.40.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.25.0",
"httpx>=0.28.0",
"pytest-cov>=6.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"