-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1009 Bytes
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1009 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
41
42
43
44
45
46
[tool.poetry]
name = "bh24_literature_mining"
version = "0.1.0"
description = "Enhancing bio.tools by Semantic Literature Mining"
authors = ["Veit Schwämmle", "Magnus Palmblad"]
packages = [
{ include = "bh24_literature_mining", from = "src" }]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
numpy = "^2.1.2"
pandas = "^2.2.3"
ipykernel = "^6.29.5"
europe-pmc = "1.0.0"
requests = "^2.32.3"
matplotlib = "^3.9.2"
wordcloud = "^1.9.3"
nltk = "^3.9.1"
beautifulsoup4 = "^4.12.3"
lxml = "^5.3.0"
sentence-splitter = "^1.4"
scikit-learn = "^1.5.2"
pathlib = "^1.0.1"
igraph = "^0.11.8"
py4cytoscape = "^1.11.0"
wandb = "^0.19.1"
datasets = "^3.2.0"
evaluate = "^0.4.3"
seqeval = "^1.2.2"
accelerate = "^1.2.1"
transformers = {extras = ["torch"], version = "^4.47.1"}
ipymarkup = "^0.9.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-datadir = "^1.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"