-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (49 loc) · 1.19 KB
/
pyproject.toml
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
[tool.coverage.run]
branch = true
[tool.coverage.report]
fail_under = 100
show_missing = true
skip_covered = true
[tool.ruff]
select = [
"F", # pyflakes
"E", "W", # pycodestyle
"C90", # mccabe
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"B", # flake8-bugbear
"INP", # flake8-no-pep420
]
[tool.poetry]
name = "foundationevals"
version = "0.0.0"
description = "LLM Evaluations for foundational skills"
authors = ["David R. MacIver <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/DRMacIver/foundationevals"
repository = "https://github.com/DRMacIver/foundationevals"
classifiers = [
"Development Status :: 3 - Alpha",
]
[tool.poetry.dependencies]
python = ">=3.12, <4.0"
poetry-plugin-export = "^1.7.1"
ollama = "^0.1.7"
anthropic = "^0.21.3"
openai = "^1.14.2"
pydantic = "^2.6.4"
click = "^8.1.7"
tenacity = "^8.2.3"
jsonschema = "^4.21.1"
shrinkray = {git = "https://github.com/DRMacIver/shrinkray.git"}
[tool.poetry.group.dev.dependencies]
ipython = "^8.22.2"
pytest = "^8.1.1"
jupyter = {extras = ["notebook"], version = "^1.0.0"}
hypothesis = "^6.99.13"
hypothesis-trio = "^0.6.0"
shed = "^2024.3.1"
[tool.flake8]
max-line-length = 120