-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (54 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
57 lines (54 loc) · 1.39 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
[build-system]
requires = ["setuptools>=58"]
build-backend = "setuptools.build_meta"
[project]
name = "LLMAIx"
version = "0.3.40"
requires-python = ">= 3.11"
description = "LLM-AIx - A pipeline for information extraction and anonymization of medical documents"
readme = "README.md"
authors = [
{name = "KatherLab", email = "jakob-nikolas.kather@alumni.dkfz.de"},
]
license = {text = "AGPL-3.0"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: AGPL-3.0 License",
"Operating System :: OS Independent",
]
dependencies = [
"Flask~=3.1.2",
"Flask-SocketIO~=5.6.0",
"Flask-WTF~=1.2.2",
"Flask-SQLAlchemy~=3.1.1",
"dkpro-cassis~=0.10.1",
"docx2pdf~=0.1.8",
"matplotlib~=3.10.8",
"numpy~=2.4.2",
"pandas~=2.3.3",
"pillow~=10.4.0",
"PyYAML~=6.0.3",
"seaborn~=0.13.2",
"requests~=2.32.5",
"thefuzz~=0.22.1",
"torch~=2.9.0",
"torchvision~=0.24.0",
"transformers~=4.57.6",
"WTForms~=3.2.1",
"Flask-HTTPAuth~=4.8.0",
"python-docx~=1.2.0",
"timm~=1.0.24",
"surya-ocr~=0.17.1",
"scikit-learn~=1.8.0",
"prometheus_client~=0.24.1",
"PyMuPDF~=1.26.7",
"aiohttp~=3.13.3",
"openpyxl~=3.1.5",
"openai~=2.17.0"
]
[project.urls]
"Homepage" = "https://github.com/KatherLab/LLMAIx"
[tool.setuptools]
packages = ["webapp"]
[project.optional-dependencies]
test = ["pytest~=9.0.2"]