File size: 578 Bytes
33fba32
 
 
 
 
 
 
 
 
89bd9f9
33fba32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"

[project]
name = "vwg-bench"
version = "0.1.0"
description = "Dataset validation and evaluation tools for VWG-Bench"
readme = "README.md"
license = { text = "CC BY-NC 4.0" }
requires-python = ">=3.10"
dependencies = [
  "google-genai>=1.0.0",
  "numpy>=1.24",
  "opencv-python-headless>=4.8",
  "Pillow>=10.0",
  "tqdm>=4.66",
]

[project.scripts]
vwg-bench = "vwg_bench.cli:main"

[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.package-data]
vwg_bench = ["config/*.json"]