forked from medizininformatik-initiative/GeMTeX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (49 loc) · 1.27 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "surrogator"
description = "Creates surrogates of to anonymized annotations."
version = "1.0.2"
authors = [
{ name = "Christina", email = "christina.lohr@imise.uni-leipzig.de" }
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pandas~=2.2.2",
"dkpro-cassis",
"pycaprio~=0.3.0",
"streamlit",
"toml~=0.10.2",
"mdutils~=1.6.0",
"tabulate~=0.9.0",
"streamlit_ext",
"python-dateutil~=2.9.0",
"requests~=2.32.3",
"schwifty",
"gender-guesser",
"spacy",
"joblib",
"sentence-transformers",
"Levenshtein",
"scikit-learn",
"openpyxl",
"overpy",
"anytree",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.setuptools.packages.find]
where = ["."]
exclude = ['tests']
[tool.setuptools.package-data]
"inception_reports" = ["data/*.json","config/logging_config.yaml"]
[project.scripts]
inception_reports = "inception_reports.__main__:main"
download_models = "Surrogator.Configuration.model_loader:download_models"
[project.urls]
Homepage = "https://www.smith.care/en/gemtex_mii/"