-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·47 lines (42 loc) · 1.1 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
[tool.poetry]
name = "globantdb"
version = "0.0.1-alpha"
description = "A serverless document vector datastore which can be run at the edge suitable for AI applications."
authors = ["Oscar Bahamonde <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
cython = "^3.0.10"
orjson = "^3.10.3"
numpy = "^1.26.4"
hnswlib = "^0.8.0"
uvicorn = "^0.29.0"
fastapi-slim = "^0.111.0"
eval-type-backport = "^0.2.0"
httpx = "^0.27.0"
sse-starlette = "^2.1.0"
python-jose = "^3.3.0"
cryptography = "^42.0.8"
iso8601 = "^2.1.0"
pyarrow = "^16.1.0"
authlib = "^1.3.1"
itsdangerous = "^2.2.0"
python-docx = "^1.1.2"
python-pptx = "^0.6.23"
pypdf2 = "^3.0.1"
pymupdf = "^1.24.7"
pillow = "^10.3.0"
[tool.poetry.dev-dependencies]
pylint = "^2.11.1"
black = "^21.12b0"
isort = "^5.10.2"
pytest = "^8.2.0"
pytest-asyncio = "^0.23.6"
[tool.poetry.group.dev.dependencies]
pytest-asyncio = "^0.23.7"
sphinx-rtd-theme = "^2.0.0"
sphinx-sitemap = "^2.6.0"
python-dotenv = "^1.0.1"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools", "wheel", "Cython"]
build-backend = "poetry.core.masonry.api"