rag-context-optimizer / pyproject.toml
NITISHRG15102007's picture
Fix reset endpoint and Python 3.14 compatibility
d2739ca verified
Raw
History Blame Contribute Delete
696 Bytes
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rag-context-optimizer"
version = "1.0.0"
description = "RAG pipeline optimization environment - minimize tokens, maximize answer quality"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi==0.115.0",
"uvicorn[standard]==0.30.0",
"pydantic>=2.11,<3",
"httpx==0.27.0",
"openai==1.30.0",
"python-multipart==0.0.9",
"openenv-core>=0.2.0",
]
[project.scripts]
server = "server.app:main"
[tool.setuptools]
packages = ["env", "server"]
py-modules = ["app", "inference", "validate"]
[tool.pytest.ini_options]
testpaths = ["tests"]