Files
Judgemark-v2lp/pyproject.toml
T
2025-07-23 16:58:35 +08:00

29 lines
606 B
TOML

[project]
name = "judgemark_v2lp"
version = "0.1.0"
description = "**Judgemark V2** is a benchmark that evaluates how well a language model can judge creative writing"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"matplotlib>=3.7",
"python-dotenv>=1.1.1",
"scipy>=1.10",
"transformers>=4.26",
]
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"ipywidgets>=8.1.7",
]
[tool.setuptools.packages.find]
where = ["."] # search the root directory
include = ["judgemark_v2lp*"]