-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
59 lines (55 loc) · 1.36 KB
/
pyproject.toml
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
59
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "SciAssist"
version = "0.0.37"
authors = [
{ name="WING-NUS", email="[email protected]" },
]
maintainers = [
{ name="Yixi Ding", email="[email protected]" },
]
description = "A toolkit for Scientific Document Processing"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: Free for non-commercial use",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"beautifulsoup4~=4.9.0",
"chardet~=3.0.4",
"datasets~=2.2.2",
"hydra-core>=1.1.0",
"lxml",
"matplotlib~=3.5.1",
"nltk~=3.7",
"numpy~=1.19.2",
"omegaconf~=2.2.2",
"PyPDF2~=2.10.7",
"python_magic~=0.4.18",
"pytorch_lightning~=1.7.1",
"requests~=2.21.0",
"rich~=12.4.4",
"seaborn~=0.11.2",
"setuptools>=61.0",
"torch>=1.12.0",
"torchmetrics>=0.7.0",
"transformers~=4.19.2",
"wandb~=0.12.19",
"pdfminer.six",
"pandas~=1.4.3",
"pytorch-crf",
"torchcrf",
"sacremoses",
"seqeval",
]
[project.scripts]
setup_grobid = "SciAssist.bin:setup_grobid"
run_grobid = "SciAssist.bin:run_grobid"
[project.urls]
"Homepage" = "https://github.com/WING-NUS/SciAssist"
"Bug Tracker" = "https://github.com/WING-NUS/SciAssist/issues"