mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-14 17:03:29 +03:00
4806dc5809
# Description ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate): --------- Co-authored-by: Stan Girard <stan@quivr.app> Co-authored-by: Stan Girard <girard.stanislas@gmail.com>
52 lines
1.6 KiB
TOML
52 lines
1.6 KiB
TOML
|
|
[tool.poetry]
|
|
name = "quivr-monorepo"
|
|
version = "0.0.1"
|
|
description = "Quivr monorepo"
|
|
authors = ["aminediro <amine@quivr.app"]
|
|
readme = "README.md"
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
|
|
dropbox = "^12.0.2"
|
|
itsdangerous = "^2.2.0"
|
|
[tool.poetry.group.dev.dependencies]
|
|
quivr-core = { path = "core", develop = true, extras = ["base"] }
|
|
quivr-api = { path = "api", develop = true }
|
|
torch = [
|
|
{ version = "2.3.1", source = "pypi", platform = "darwin" },
|
|
{ version = "2.3.1", source = "pypi", platform = "linux", markers = "platform_machine != 'x86_64'" },
|
|
{ version = "2.3.1+cpu", source = "pytorch-cpu-src", platform = "linux", markers = "platform_machine == 'x86_64'" },
|
|
{ version = "2.3.1+cpu", source = "pytorch-cpu-src", platform = "win32" },
|
|
]
|
|
torchvision = [
|
|
{ version = "0.18.1", source = "pypi", platform = "darwin" },
|
|
{ version = "0.18.1", source = "pypi", platform = "linux", markers = "platform_machine != 'x86_64'" },
|
|
{ version = "0.18.1+cpu", source = "pytorch-cpu-src", platform = "linux", markers = "platform_machine == 'x86_64'" },
|
|
{ version = "0.18.1+cpu", source = "pytorch-cpu-src", platform = "win32" },
|
|
]
|
|
mypy = "^1.10.0"
|
|
pre-commit = "^3.7.1"
|
|
ipykernel = "*"
|
|
ruff = "^0.4.8"
|
|
flake8 = "*"
|
|
flake8-black = "*"
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
pytest = "*"
|
|
pytest-asyncio = "^0.23.7"
|
|
pytest-dotenv = "*"
|
|
pytest-mock = "*"
|
|
pytest-celery = "*"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[[tool.poetry.source]]
|
|
name = "pytorch-cpu-src"
|
|
url = "https://download.pytorch.org/whl/cpu"
|
|
priority = "explicit"
|