-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (54 loc) · 2.08 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
[tool.poetry]
name = "globalise-tools"
version = "0.2.0"
description = ""
authors = ["Bram Buitendijk <[email protected]>", "Maarten van Gompel <[email protected]>"]
readme = "README.md"
packages = [
{ include = "globalise_tools" },
{ include = "scripts", to = "globalise_tools" },
]
[tool.poetry.dependencies]
annorepo-client = "^0.2.0"
appengine-python-standard = "^1.1.3"
blessedtable = "^1.0.0"
colorama = "^0.4.6"
dask = {extras = ["distributed"], version = "^2024.10.0"}
dataclasses-json = "^0.5.13"
dkpro-cassis = "^0.9.1"
hydra-core = "^1.3.2"
icecream = "^2.1.3"
intervaltree = "^3.1.0"
jsondataclass = "^0.3.0"
loguru = "^0.7.0"
pagexml-tools = "^0.5.0"
progressbar2 = "^4.2.0"
pycaprio = "^0.2.1"
python = ">=3.10,<3.13"
spacy = { version = "^3.4.3" }
stam = ">=0.10.0"
tabulate = "^0.9.0"
textrepo-client = "^0.5.2"
uri = { git = "https://github.com/marrow/uri.git", rev = "5b58db87451ca4680004a8993a56bfc4dafff4d4" }
uuid = "^1.30"
xlsxwriter = "^3.0.3"
xmldict = "^0.4.1"
# use `poetry install --with dev-bram` to use these dependencies
[tool.poetry.group.dev-bram.dependencies]
retry = "^0.9.2"
annorepo-client = { path = "/Users/bram/workspaces/annorepo/annorepo-client", develop = true }
pagexml-tools = { path = "/Users/bram/workspaces/pagexml", develop = true }
provenance-client = { path = "/Users/bram/workspaces/provenance/provenance-python-client", develop = true }
spacy = { extras = ["apple"], version = "^3.4.3" }
textrepo-client = { path = "/Users/bram/workspaces/textrepo/textrepo-client-python", develop = true }
[tool.poetry.scripts]
gt-classify-language = "globalise_tools.scripts.gt_classify_language:main"
gt-extract-lines = "globalise_tools.scripts.gt_extract_lines:main"
gt-xmi-to-wa = "globalise_tools.scripts.gt_xmi_to_wa:main"
gt-fix-reading-order = "globalise_tools.scripts.gt_fix_reading_order:main"
gt-merge-manual-corrections = "globalise_tools.scripts.gt_merge_manual_corrections:main"
gt-align-rgp = "globalise_tools.scripts.gt_align_rgp:main"
version = 'poetry_scripts:version'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"