File size: 403 Bytes
6a438b2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | [build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "custom-chat-template-assignment"
version = "1.0.0"
description = "Custom ChatML Jinja2 template with tool-calling support"
requires-python = ">=3.9"
[project.optional-dependencies]
test = [
"jinja2>=3.1,<4",
"pytest>=8,<9",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
|