-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (73 loc) · 2.07 KB
/
pyproject.toml
File metadata and controls
83 lines (73 loc) · 2.07 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "evalmedia"
version = "0.4.0"
description = "Open-source framework for evaluating AI-generated media quality"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{ name = "evalmedia contributors" },
]
keywords = ["ai", "media", "evaluation", "quality", "image", "agents", "vlm"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Multimedia :: Graphics",
"Typing :: Typed",
]
dependencies = [
"Pillow>=10.0",
"httpx>=0.25",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
claude = ["anthropic>=0.40"]
openai = ["openai>=1.50"]
ollama = ["openai>=1.50"]
classical = ["torch>=2.0", "open-clip-torch>=2.24"]
cli = ["typer>=0.12", "rich>=13.0"]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-mock>=3.12",
"ruff>=0.4",
"mypy>=1.10",
"types-PyYAML>=6.0",
]
all = ["evalmedia[claude,openai,ollama,classical,cli]"]
[project.scripts]
evalmedia = "evalmedia.cli.main:app"
[project.urls]
Homepage = "https://evalmedia.com"
Repository = "https://github.com/saidkaban/evalmedia"
Issues = "https://github.com/saidkaban/evalmedia/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/evalmedia"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP"]
[tool.ruff.lint.isort]
known-first-party = ["evalmedia"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true