2024-09-02 11:20:53 +03:00
|
|
|
[project]
|
|
|
|
name = "quivr-worker"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Add your description here"
|
|
|
|
authors = [
|
|
|
|
{ name = "Stan Girard", email = "stan@quivr.app" }
|
|
|
|
]
|
|
|
|
dependencies = [
|
|
|
|
"quivr-core[all]",
|
|
|
|
"quivr-api",
|
|
|
|
"celery[redis]>=5.0.0",
|
|
|
|
"python-dotenv>=1.0.0",
|
|
|
|
"playwright>=1.0.0",
|
|
|
|
"openai>=1.0.0",
|
|
|
|
"flower>=2.0.1",
|
2024-09-18 13:30:48 +03:00
|
|
|
"torch==2.4.0; platform_machine != 'x86_64'",
|
2024-09-02 11:20:53 +03:00
|
|
|
"torch==2.4.0+cpu; platform_machine == 'x86_64'",
|
|
|
|
"torchvision==0.19.0; platform_machine != 'x86_64'",
|
|
|
|
"torchvision==0.19.0+cpu; platform_machine == 'x86_64'",
|
2024-09-18 13:30:48 +03:00
|
|
|
"fpdf2>=2.7.9",
|
2024-09-02 11:20:53 +03:00
|
|
|
]
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">= 3.11"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[tool.rye]
|
|
|
|
managed = true
|
|
|
|
dev-dependencies = [
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.hatch.metadata]
|
|
|
|
allow-direct-references = true
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
packages = ["quivr_worker"]
|
|
|
|
|
|
|
|
[[tool.rye.sources]]
|
|
|
|
name = "pytorch"
|
|
|
|
url = "https://download.pytorch.org/whl/cpu"
|
|
|
|
|
|
|
|
[[tool.rye.sources]]
|
|
|
|
name = "quivr-core"
|
|
|
|
path = "../quivr-core"
|
|
|
|
|
|
|
|
[[tool.rye.sources]]
|
|
|
|
name = "quivr-api"
|
|
|
|
path = "../quivr-api"
|