neuraldocs / pyproject.toml
Lawrence Anthony
feat: add NeuralDocs agentic RAG app
9fa4cb8
Raw
History Blame Contribute Delete
500 Bytes
[project]
name = "neuraldocs"
version = "2.0.0"
description = "NeuralDocs — Agentic RAG with PDF + Web Intelligence"
authors = [{ name = "Your Name", email = "you@example.com" }]
requires-python = ">=3.10,<=3.13"
dependencies = [
"crewai[tools]>=0.86.0,<1.0.0",
"streamlit>=1.32.0",
"markitdown>=0.0.1",
"chonkie>=0.1.0",
"qdrant-client>=1.7.0",
]
[project.scripts]
neuraldocs = "agentic_rag.main:run"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"