-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
44 lines (36 loc) · 1.15 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
[tool.poetry]
name = "exasol-transformers-extension"
version = "2.2.0"
description = "An Exasol extension for using state-of-the-art pretrained machine learning models via the Hugging Face Transformers API."
authors = [
"Umit Buyuksahin <[email protected]>",
"Torsten Kilias <[email protected]>"
]
readme = 'README.md'
repository = "https://github.com/exasol/transformers-extension"
homepage = "https://github.com/exasol/transformers-extension"
keywords = ['exasol']
[tool.poetry.dependencies]
python = "^3.10.0"
pandas = ">=1.4.2,<3.0.0"
torch = "^2.0.1"
transformers = {extras = ["torch"], version = "^4.36.2"}
Jinja2 = "^3.0.3"
importlib-resources = "^6.4.0"
click = "^8.0.4"
pyexasol = ">=0.25.0"
exasol-bucketfs = ">=0.11.0,<1.0.0"
tenacity = "^8.2.2"
sacremoses = ">=0.0.53"
exasol-python-extension-common = ">=0.8.0,<1"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
exasol-udf-mock-python = ">=0.3.0"
toml = "^0.10.2"
[tool.poetry.group.dev.dependencies]
nox = "^2023.4.22"
pytest-exasol-slc = ">=0.3.0"
pytest-exasol-extension = ">=0.2.1,<1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"