-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 833 Bytes
/
pyproject.toml
File metadata and controls
29 lines (24 loc) · 833 Bytes
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
[tool.poetry]
name = "tei"
version = "0.1.0"
description = "Hugging Face Text Embedding Inference Python Client"
license = "Apache-2.0"
authors = ["Olivier Dehaene <olivier@huggingface.co>", "Sam Ulrich <samson98ulrich@gmail.com>"]
maintainers = ["Olivier Dehaene <olivier@huggingface.co>", "Sam Ulrich <samson98ulrich@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/gage-technologies/tei-python"
repository = "https://github.com/gage-technologies/tei-python"
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^2.0"
aiohttp = "^3.8"
huggingface-hub = ">= 0.12, < 1.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-asyncio = "^0.17.2"
pytest-cov = "^3.0.0"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"