AnnotationReviewer / pyproject.toml
Somin-Aggarwal's picture
Upload 8 files
efaa228 verified
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openenv-annotation-qa-env"
version = "0.2.0"
description = "Annotation QA Environment for OpenEnv — AI agent reviews and corrects flawed ML annotations on real COCO val2017 images using a VLM"
requires-python = ">=3.10"
dependencies = [
# Core OpenEnv dependencies
"openenv-core[core]>=0.2.2",
"fastapi>=0.115.0",
"pydantic>=2.0.0",
"uvicorn>=0.24.0",
"requests>=2.31.0",
"openai>=1.0.0",
"Pillow>=10.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
]
[project.scripts]
server = "annotation_qa_env.server.app:main"
[tool.setuptools]
include-package-data = true
packages = [
"annotation_qa_env",
"annotation_qa_env.server",
"annotation_qa_env.data",
]
[tool.setuptools.package-dir]
"annotation_qa_env" = "."
"annotation_qa_env.server" = "server"
"annotation_qa_env.data" = "data"
[tool.setuptools.package-data]
"annotation_qa_env.data" = ["tasks/**/*.json"]