File size: 1,917 Bytes
535b39c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[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" }]