mirror of
https://github.com/VectifyAI/PageIndex.git
synced 2026-05-03 03:52:36 +02:00
Update pyproject.toml: switch to poetry and bump to 0.3.0.dev0
This commit is contained in:
parent
c7fe93bb56
commit
27e671eefd
1 changed files with 22 additions and 29 deletions
|
|
@ -1,17 +1,10 @@
|
||||||
[build-system]
|
[tool.poetry]
|
||||||
requires = ["setuptools>=68.0"]
|
|
||||||
build-backend = "setuptools.build_meta"
|
|
||||||
|
|
||||||
[project]
|
|
||||||
name = "pageindex"
|
name = "pageindex"
|
||||||
version = "0.3.0"
|
version = "0.3.0.dev0"
|
||||||
description = "Python SDK for PageIndex"
|
description = "Python SDK for PageIndex"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = {text = "MIT"}
|
license = "MIT"
|
||||||
requires-python = ">=3.10"
|
authors = ["Ray <ray@vectify.ai>"]
|
||||||
authors = [
|
|
||||||
{name = "Ray", email = "ray@vectify.ai"},
|
|
||||||
]
|
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 3 - Alpha",
|
"Development Status :: 3 - Alpha",
|
||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
|
|
@ -23,26 +16,26 @@ classifiers = [
|
||||||
"Programming Language :: Python :: 3.13",
|
"Programming Language :: Python :: 3.13",
|
||||||
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
||||||
]
|
]
|
||||||
keywords = ["rag", "document", "retrieval", "llm", "pageindex"]
|
keywords = ["rag", "document", "retrieval", "llm", "pageindex", "agents", "vector-database"]
|
||||||
dependencies = [
|
packages = [{include = "pageindex"}]
|
||||||
"litellm>=1.82.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[socks]>=0.28.1",
|
|
||||||
]
|
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[tool.poetry.dependencies]
|
||||||
dev = ["pytest>=8.0", "pytest-asyncio>=0.23"]
|
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"}
|
||||||
|
|
||||||
[project.urls]
|
[tool.poetry.urls]
|
||||||
Homepage = "https://github.com/VectifyAI/PageIndex"
|
|
||||||
Documentation = "https://docs.pageindex.ai"
|
|
||||||
Repository = "https://github.com/VectifyAI/PageIndex"
|
Repository = "https://github.com/VectifyAI/PageIndex"
|
||||||
|
Homepage = "https://pageindex.ai"
|
||||||
|
Documentation = "https://docs.pageindex.ai"
|
||||||
Issues = "https://github.com/VectifyAI/PageIndex/issues"
|
Issues = "https://github.com/VectifyAI/PageIndex/issues"
|
||||||
|
|
||||||
[tool.setuptools.packages.find]
|
[build-system]
|
||||||
include = ["pageindex*"]
|
requires = ["poetry-core"]
|
||||||
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue