-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.31 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
[project]
name = "Synapsen"
version = "0.8.2"
description = "スキャンPDFや電子ノートを統合・データベース化し、高度な検索とキャンバス機能で知識を体系化するZettelkasten風ノート管理システム。"
authors = [
{name = "Kurato-Tsukishiro",email = "kurato.snr7@gmail.com"}
]
license = {text = "AGPL-3.0-only AND CC-BY-SA-4.0 AND CC0-1.0"}
readme = "README.md"
packages = [
{include = "Synapsen_Nexus"},
{include = "Synapsen_Ersteller"},
{include = "Synapsen_Normalisierer"}
]
[tool.poetry.dependencies]
python = ">=3.13.7,<3.15"
# --- Main Requirements (Core) ---
customtkinter = "^5.2.2"
networkx = "*"
numpy = "*"
pandas = "*"
Pillow = "*"
playwright = "*"
PyMuPDF = "^1.26.6"
pypdf = "^6.0.0"
pytesseract = "*"
pyvis = "*"
pyzbar = "*"
qrcode = "*"
reportlab = "^4.4.4"
tkinterdnd2 = "*"
watchdog = "*"
# --- Optional Dependencies (Extras) ---
ollama = { version = "^0.6.1", optional = true }
Flask = { version = "^3.1.2", optional = true }
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.2"
pytest-cov = "^7.0.0"
black = "^25.12.0"
flake8 = "^6.1.0"
pyinstaller = "^6.16.0"
[tool.poetry.extras]
ai = ["ollama"]
web = ["Flask"]
full = ["ollama", "Flask"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88