| [project] |
| name = "vibe-reader" |
| version = "0.1.0" |
| description = "Discover your next favorite book through vibes - A Gradio app using VLMs and RAG to recommend books based on visual mood boards" |
| readme = "README.md" |
| requires-python = ">=3.13" |
| authors = [ |
| { name = "Your Name", email = "your.email@example.com" } |
| ] |
| keywords = ["gradio", "books", "recommendations", "vlm", "rag", "mcp", "reddit"] |
| classifiers = [ |
| "Development Status :: 3 - Alpha", |
| "Intended Audience :: End Users/Desktop", |
| "Topic :: Multimedia :: Graphics", |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| "Programming Language :: Python :: 3.13", |
| ] |
|
|
| dependencies = [ |
| "altair>=6.0.0", |
| "anthropic>=0.39.0", |
| "elevenlabs>=1.15.0", |
| "faiss-cpu>=1.13.0", |
| "flask>=3.1.0", |
| "gradio[mcp,oauth]==6.0.1", |
| "langchain-nebius>=0.1.3", |
| "langgraph>=0.2.59", |
| "langchain-core>=0.3.29", |
| "langchain-openai>=0.2.14", |
| "marimo>=0.17.7", |
| "modal>=0.67.0", |
| "openai>=1.0.0", |
| "pandas>=2.3.3", |
| "plotly>=6.4.0", |
| "praw>=7.8.1", |
| "python-dotenv>=1.2.1", |
| "pyzmq>=27.1.0", |
| "requests>=2.32.0", |
| "ruff>=0.14.6", |
| "scikit-learn>=1.7.2", |
| "torch", |
| "torchvision", |
| "tqdm>=4.66.0", |
| "transformers>=4.57.1", |
| "typer>=0.20.0" |
| ] |
|
|
| [project.urls] |
| Homepage = "https://github.com/your-username/vibe-reader" |
| Documentation = "https://github.com/your-username/vibe-reader#readme" |
| Repository = "https://github.com/your-username/vibe-reader" |
| Issues = "https://github.com/your-username/vibe-reader/issues" |
|
|
| [build-system] |
| requires = ["hatchling"] |
| build-backend = "hatchling.build" |
|
|
| [tool.hatch.build.targets.wheel] |
| packages = ["app"] |
|
|
| [tool.uv] |
| dev-dependencies = [] |
|
|
| [[tool.uv.index]] |
| name = "pytorch-cu126" |
| url = "https://download.pytorch.org/whl/cu126" |
| explicit = true |
|
|
| [tool.uv.sources] |
| torch = [{ index = "pytorch-cu126" }] |
| torchvision = [{ index = "pytorch-cu126" }] |
|
|