-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (68 loc) · 1.96 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (68 loc) · 1.96 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "model-familiarity-engine"
version = "0.2.0"
description = "An instrument-gated evaluation engine for replaying known-outcome model behavior"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Aria Han", email = "aria@ariaxhan.com" },
]
keywords = ["llm", "evaluation", "model-behavior", "replay", "model-cards"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"click>=8.0",
"httpx>=0.27",
"pyyaml>=6.0",
]
[project.optional-dependencies]
cloud = ["boto3>=1.40"]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.4",
]
[project.scripts]
model-familiarity = "model_familiarity.cli:main"
[project.urls]
Homepage = "https://github.com/ariaxhan/model-familiarity-engine"
Repository = "https://github.com/ariaxhan/model-familiarity-engine"
Issues = "https://github.com/ariaxhan/model-familiarity-engine/issues"
Changelog = "https://github.com/ariaxhan/model-familiarity-engine/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["src/model_familiarity"]
[tool.hatch.build.targets.sdist]
exclude = [
"/_meta/**",
"/.claude/**",
"/.codex/**",
"/.pytest_cache/**",
"/.ruff_cache/**",
"/dist/**",
"/build/**",
"/.venv/**",
"/**/*.egg-info/**",
"/**/__pycache__/**",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.ruff.lint.per-file-ignores]
"src/model_familiarity/tasks.py" = ["E501"]
"src/model_familiarity/floor.py" = ["E501"]
"src/model_familiarity/challenges.py" = ["E501"]
"src/model_familiarity/lhcr_judge.py" = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"