2026-04-08 20:45:49 +08:00
|
|
|
[tool.poetry]
|
2026-04-06 22:51:04 +08:00
|
|
|
name = "pageindex"
|
2026-04-11 01:18:22 +08:00
|
|
|
version = "0.3.0.dev1"
|
2026-04-06 22:51:04 +08:00
|
|
|
description = "Python SDK for PageIndex"
|
|
|
|
|
readme = "README.md"
|
2026-04-08 20:45:49 +08:00
|
|
|
license = "MIT"
|
|
|
|
|
authors = ["Ray <ray@vectify.ai>"]
|
2026-04-06 22:51:04 +08:00
|
|
|
classifiers = [
|
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
|
"Programming Language :: Python :: 3.13",
|
|
|
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
|
|
|
]
|
2026-04-08 20:45:49 +08:00
|
|
|
keywords = ["rag", "document", "retrieval", "llm", "pageindex", "agents", "vector-database"]
|
|
|
|
|
packages = [{include = "pageindex"}]
|
2026-04-06 22:51:04 +08:00
|
|
|
|
2026-04-08 20:45:49 +08:00
|
|
|
[tool.poetry.dependencies]
|
|
|
|
|
python = ">=3.10"
|
|
|
|
|
litellm = ">=1.83.0"
|
|
|
|
|
pymupdf = ">=1.26.0"
|
|
|
|
|
PyPDF2 = ">=3.0.0"
|
|
|
|
|
python-dotenv = ">=1.0.0"
|
|
|
|
|
pyyaml = ">=6.0"
|
|
|
|
|
openai-agents = ">=0.1.0"
|
|
|
|
|
requests = ">=2.28.0"
|
|
|
|
|
httpx = {extras = ["socks"], version = ">=0.28.1"}
|
2026-04-06 22:51:04 +08:00
|
|
|
|
2026-04-08 20:45:49 +08:00
|
|
|
[tool.poetry.urls]
|
2026-04-06 22:51:04 +08:00
|
|
|
Repository = "https://github.com/VectifyAI/PageIndex"
|
2026-04-08 20:45:49 +08:00
|
|
|
Homepage = "https://pageindex.ai"
|
|
|
|
|
Documentation = "https://docs.pageindex.ai"
|
2026-04-06 22:51:04 +08:00
|
|
|
Issues = "https://github.com/VectifyAI/PageIndex/issues"
|
|
|
|
|
|
2026-04-08 20:45:49 +08:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|