File size: 1,065 Bytes
efaa228
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[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"]