-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 2.06 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (48 loc) · 2.06 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "masterwork"
version = "0.0.5"
description = "A production line for agent character: a sitting the model speaks for itself in, sealed candidates, frozen gates, and a verdict it is not allowed to give itself."
readme = "README.pypi.md"
requires-python = ">=3.10"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [{name = "Codechu"}]
keywords = [
"agents", "ai-agents", "llm", "llm-agents", "character", "identity",
"preference-data", "dpo", "training-data", "evaluation-harness",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"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",
]
# masterwork does not measure. It hands the piece to journeyman and carries
# the verdict, through the CLI rather than an import, so the stamp travels
# with the claim. The dependency is declared because a line without a judge
# cannot finish, and the judge must be able to name its own version.
# Upper bound, not open-ended: the benchmark documents that pre-1.0 the
# MINOR digit is where a breaking change goes, so ">=x" alone invites in
# exactly the releases allowed to break this. Verified read-compatible
# through 0.4.x (report.json keys unchanged since 0.2.0).
dependencies = ["journeyman-bench>=0.2.1,<0.5.0"]
[project.scripts]
masterwork = "masterwork.__main__:main"
[project.urls]
Homepage = "https://github.com/codechu/masterwork"
Changelog = "https://github.com/codechu/masterwork/blob/HEAD/CHANGELOG.md"
Contributing = "https://github.com/codechu/masterwork/blob/HEAD/CONTRIBUTING.md"
[tool.setuptools]
packages = ["masterwork"]
[tool.setuptools.package-data]
masterwork = ["rubric-example.json", "starter/*"]