-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (26 loc) · 1.03 KB
/
pyproject.toml
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
[tool.poetry]
name = "RAGScraper"
version = "11.5.2023"
description = "RAGScraper is a Python library designed for efficient and intelligent scraping of web documentation and content. Tailored for Retrieval-Augmented Generation systems, RAGScraper extracts and preprocesses text into structured, machine-learning-ready formats. It emphasizes precision, context preservation, and ease of integration with RAG models, making it an ideal tool for developers looking to enhance AI-driven applications with rich, web-sourced knowledge."
authors = ["kdcokenny <kenny@elapse.ai>"]
license = "MIT"
readme = "README.md"
packages = [{include = "rag_scraper"}]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.31.0"
beautifulsoup4 = "^4.12.2"
html2text = "^2020.1.16"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
rich = "^13.6.0"
black = "^23.10.1"
flake8 = "^6.1.0"
ruff = "^0.1.4"
isort = "^5.12.0"
pyright = "^1.1.334"
pytest = "^7.4.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"