-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 1.96 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (67 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[project]
name = "inspect_evals_scoring"
version = "0.1.0"
description = "Scoring and evaluation tools for inspect_ai"
license = {text = "MIT"}
authors = [{ name = "Arcadia Impact" }]
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
[project.scripts]
ies = "inspect_evals_scoring.cli.main:cli"
[project.optional-dependencies]
dev = [
"cfn-lint",
"pytest",
"pytest-env",
"ruff",
]
[project.urls]
"Source Code" = "https://github.com/ArcadiaImpact/inspect_evals_scoring"
"Issue Tracker" = "https://github.com/ArcadiaImpact/inspect_evals_scoring/issues"
[tool.setuptools]
packages = ["inspect_evals_scoring"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # flake8
"D", # pydocstyle
"I", # isort
"SIM101", # duplicate isinstance
"UP038", # non-pep604-isinstance
# "RET", # flake8-return
"RUF", # ruff rules
]
ignore = [
"E203", # whitespace-before-punctuation
"E501", # line-too-long
"D10", # undocumented-{anything}
"D200", # unnecessary-multiline-docstring
"D205", # missing-blank-line-after-summary
"D212", # multi-line-summary-first-line
"D415", # missing-terminal-punctuation
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.pytest.ini_options]
env = [
"S3_BUCKET_NAME=test-eval-logs-bucket",
"INSPECT_LOG_DIR=logs",
]