RAG-Scraper / pyproject.toml
CultriX's picture
feat: Overhaul WebUI, add PDF/Text export, use Poetry in Docker
20a0e89
raw
history blame contribute delete
800 Bytes
[project]
name = "rag-scraper"
version = "0.1.0"
description = "RAG-Scraper HuggingFace Space"
authors = [
{name = "CultriX",email = "cultrix@tempmail.j78.org"}
]
license = {text = "mit"}
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"gradio (>=5.31.0,<6.0.0)",
"ruff (>=0.11.11,<0.12.0)",
"requests (>=2.32.3,<3.0.0)",
"beautifulsoup4 (>=4.13.4,<5.0.0)",
"html2text (>=2025.4.15,<2026.0.0)",
"markdown-pdf (>=1.7,<2.0)",
"rich (>=14.0.0,<15.0.0)",
"black (>=25.1.0,<26.0.0)",
"flake8 (>=7.2.0,<8.0.0)",
"isort (>=6.0.1,<7.0.0)",
"pyright (>=1.1.401,<2.0.0)",
"pytest (>=8.3.5,<9.0.0)",
"poetry-core (>=2.1.3,<3.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"