-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.39 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
[tool.poetry]
name = "orkgnlp"
version = "0.11.2"
description = "Python package wrapping the ORKG NLP Services."
license = "MIT"
authors = ["Omar Arab Oghli <[email protected]>", "Hamed Babaei Giglou <[email protected]>"]
maintainers = ["Hamed Babaei Giglou <[email protected]>"]
readme = "README.md"
homepage = "http://orkg.org/about"
repository = "https://gitlab.com/TIBHannover/orkg/nlp/orkg-nlp-pypi"
documentation = "https://orkg-nlp-pypi.readthedocs.io/en/latest/"
keywords = ["ORKG", "NLP", "Scholarly Communication", "Digital Library"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
include = ["CHANGELOG.md"]
[tool.poetry.dependencies]
python = "^3.8,<3.10"
huggingface-hub = "^0.5.1"
numpy = "1.21.6"
pandas = "1.3.5"
nltk = "3.5"
onnxruntime = "1.11.1"
onnx = "1.11.0"
torch = "1.11.0"
spacy = "3.3.0"
overrides = "^6.1.0"
protobuf = "3.20.0"
transformers = "4.19.3"
sentencepiece = "^0.1.96"
sentence-transformers = "2.2.2"
typing-extensions = "^3.7.4"
pre-commit = "^3.1.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
tox = "^3.25.0"
virtualenv = "^20.14.1"
[tool.black]
line-length = 99
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
test = 'tests.unittests:main'