big-data-application / pyproject.toml
thng292's picture
Added readme
79a7a69
raw
history blame contribute delete
971 Bytes
[project]
name = "big-data-application"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [{ name = "thng292", email = "nguyenquangthong292@gmail.com" }]
requires-python = ">=3.13"
dependencies = [
"gradio>=6.12.0",
"huggingface-hub>=1.11.0",
"llama-cpp-python>=0.3.19",
"llama-index>=0.14.20",
"llama-index-embeddings-huggingface>=0.7.0",
"llama-index-llms-llama-cpp>=0.6.0",
"numpy>=2.0.0",
"pyarrow>=24.0.0",
"python-dotenv>=1.2.2",
"torch",
"torchvision",
]
[project.scripts]
big-data-application = "big_data_application:main"
[build-system]
requires = ["uv_build>=0.10.4,<0.11.0"]
build-backend = "uv_build"
[tool.uv.workspace]
# members = ["packages/*"]
exclude = ["packages/*"]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[tool.uv.sources]
torch = [{ index = "pytorch-cpu" }]
torchvision = [{ index = "pytorch-cpu" }]