-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.6 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
[project]
name = "glm-thinking-validator"
version = "0.1.0"
description = "Test harness for validating GLM-4.7 preserved thinking across clients and backends"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{name = "Jacob Pascual"}
]
keywords = ["llm", "glm", "thinking", "reasoning", "testing", "llama.cpp", "openai", "anthropic"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
]
dependencies = [
"fastapi>=0.115.0",
"uvicorn>=0.34.0",
"httpx>=0.28.0",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.0",
"pytest-asyncio>=1.0.0",
]
[project.scripts]
glm-validator-openai = "glm_thinking_validator.stubs.stub_openai_server:main"
glm-validator-anthropic = "glm_thinking_validator.stubs.stub_anthropic_server:main"
[project.urls]
Repository = "https://github.com/pascual-family/glm-4.7-thinking-validator"
Documentation = "https://github.com/pascual-family/glm-4.7-thinking-validator#readme"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/glm_thinking_validator"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"requires_llamacpp: marks tests requiring llama.cpp server",
"requires_opencode: marks tests requiring OpenCode",
"requires_claude_code: marks tests requiring Claude Code",
"slow: marks tests as slow",
]