-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (70 loc) · 2.58 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (70 loc) · 2.58 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ghostrun"
version = "2.0.5"
description = "pytest for AI Apps — Fast, free, offline testing and self-improving prompts for Python developers."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "parthmax2" }]
keywords = [
"llm", "llm-evals", "llm-eval", "llm-evaluation", "llm-as-judge",
"llm-testing", "llm-regression-testing", "pytest", "pytest-plugin",
"prompt-engineering", "prompt-optimization", "prompt-crafting", "few-shot-selection",
"synthetic-data", "testing", "unit-testing", "ci", "ci-cd",
"genai", "generative-ai", "ai-testing", "agent-testing", "app-testing",
"openai", "anthropic", "gemini", "ollama", "chatbot-testing",
"record-replay", "vcr", "http-mocking", "http-cache",
"prompt-testing", "prompt-regression", "prompt-regression-testing",
"regression-testing", "semantic-assertions", "deterministic-testing",
"deterministic-llm-tests", "offline-testing",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit",
"Topic :: Software Development :: Quality Assurance",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.24",
"pyyaml>=6.0",
"pydantic>=2.0",
"litellm>=1.0.0",
"optuna>=3.0.0",
"pillow>=9.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.20",
]
[project.scripts]
ghostrun = "ghostrun.cli:main"
[project.urls]
Homepage = "https://ghostrun.parthmax.tech"
Source = "https://github.com/parthmax2/ghostrun"
Issues = "https://github.com/parthmax2/ghostrun/issues"
Documentation = "https://ghostrun.parthmax.tech"
Changelog = "https://github.com/parthmax2/ghostrun/blob/main/CHANGELOG.md"
Repository = "https://github.com/parthmax2/ghostrun"
Author = "https://github.com/parthmax2"
# Register the pytest plugin so `import ghostrun` isn't required to activate it.
[project.entry-points.pytest11]
ghostrun = "ghostrun.plugin"
[tool.hatch.build.targets.wheel]
packages = ["ghostrun"]
[tool.pytest.ini_options]
testpaths = ["tests"]