rhli commited on
Commit
a722b84
·
verified ·
1 Parent(s): 05e34c7

Upload pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +48 -0
pyproject.toml ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "genarena"
3
+ version = "0.1.0"
4
+ description = "GenArena Arena Evaluation - VLM-based pairwise image generation evaluation"
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ license = { text = "MIT" }
8
+ authors = [
9
+ { name = "GenArena Team" }
10
+ ]
11
+ classifiers = [
12
+ "Development Status :: 3 - Alpha",
13
+ "Intended Audience :: Science/Research",
14
+ "License :: OSI Approved :: MIT License",
15
+ "Operating System :: OS Independent",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.10",
18
+ "Programming Language :: Python :: 3.11",
19
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
20
+ ]
21
+ dependencies = [
22
+ "openai>=1.0.0",
23
+ "pyarrow>=12.0.0",
24
+ "pandas>=2.0.0",
25
+ "Pillow>=9.0.0",
26
+ "json_repair>=0.25.0",
27
+ "tqdm>=4.65.0",
28
+ "huggingface_hub>=0.20.0",
29
+ "datasets>=2.0.0",
30
+ ]
31
+
32
+ [project.optional-dependencies]
33
+ web = [
34
+ "flask>=2.0.0",
35
+ ]
36
+
37
+ [project.scripts]
38
+ genarena = "genarena.cli:main"
39
+
40
+ [build-system]
41
+ requires = ["hatchling"]
42
+ build-backend = "hatchling.build"
43
+
44
+ [tool.hatch.build.targets.wheel]
45
+ packages = ["genarena"]
46
+
47
+ [tool.uv]
48
+ dev-dependencies = []