-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (71 loc) · 1.87 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (71 loc) · 1.87 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
80
[build-system]
requires = ["setuptools>=75", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[project]
name = "inspect_evals_dashboard"
version = "0.1.1"
description = "A Streamlit dashboard for visualizing AI evaluation results from inspect_evals"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
requires-python = ">=3.12"
dynamic = ["dependencies"]
license = { text = "MIT" }
authors = [
{ name = "ArcadiaImpact" }
]
[project.urls]
Homepage = "https://github.com/ArcadiaImpact/inspect_evals_dashboard"
Repository = "https://github.com/ArcadiaImpact/inspect_evals_dashboard.git"
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-rA --color=yes"
testpaths = ["tests"]
log_level = "WARNING"
[project.optional-dependencies]
dev = [
"ruff",
"mypy",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-mock",
"types-PyYAML",
"pandas-stubs",
"types-boto3",
]
[tool.mypy]
files = ["app.py", "src"]
warn_unused_ignores = true
no_implicit_reexport = true
strict_equality = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unreachable = true
namespace_packages = true
explicit_package_bases = true
[tool.ruff]
src = ["app.py", "src"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # flake8
"D", # pydocstyle
"I", # isort
"SIM101", # duplicate isinstance
]
ignore = ["E203", "E501", "D10", "D415", "D203", "D213"]