-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (60 loc) · 1.58 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
60
61
62
63
64
65
66
[tool.poetry]
name = "republic-project"
version = "0.1.0"
description = "Code base for REPUBLIC project"
authors = [
"Marijn Koolen <marijn.koolen@huygens.knaw.nl>",
"Rik Hoekstra <rik.hoekstra@di.knaw.huc.nl",
"Hayco de Jong <hayco.de.jong@di.knaw.huc.nl"
]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/HuygensING/republic-project"
repository = "https://github.com/HuygensING/republic-project"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
packages = [{ include = "republic" }]
[tool.poetry.dependencies]
python = "^3.8,<3.12"
numpy = "^1.22.3"
matplotlib = "^3.7.0"
pandas = "^1.5.3"
python-dateutil = "^2.8.2"
scipy = "^1.7.0"
seaborn = "^0.12.2"
xmltodict = "^0.12.0"
fuzzy-search = "^1.5.0"
elasticsearch = "^7.15.0,<8.0"
tqdm = "^4.48.2"
requests = "^2.25.0"
beautifulsoup4 = "^4.9.1"
PyYAML = "^5.4"
fastparquet = "*"
networkx = "*"
urllib3 = "^1.26.5"
jupyterlab = "^3.3"
regex = "*"
maturin = "*"
analiticcl = "*"
langdetect = "*"
nltk = "*"
scikit-learn = "*"
torch = "*"
pagexml-tools = "^0.4.0"
[tool.poetry.dev-dependencies]
[tool.poetry.group.test.dependencies]
icecream = "^2.1.2"
loguru = "^0.6.0"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/HuygensING/republic-project/issues"
[tool.poetry.scripts]
version = 'poetry_scripts:version'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"