-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
61 lines (52 loc) · 1.36 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
56
57
58
59
60
61
[tool.poetry]
name = "bananalyzer"
version = "0.12.0"
description = "Open source AI Agent evaluation framework for web tasks 🐒🍌"
authors = ["asim-shrestha <[email protected]>", "awtkns <[email protected]>"]
readme = "README.md"
[tool.poetry.scripts]
bananalyze = "bananalyzer.__main__:main"
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
playwright = ">=1.47.0"
pydantic = "^2.8.2"
pytest-asyncio = "^0.24.0"
deepdiff = "^8.0.0"
pytest = "^8.3.2"
pytest-html = "^4.1.1"
pytest-xdist = "^3.6.1"
tabulate = "^0.9.0"
requests = "^2.32.3"
boto3 = "^1.35.8"
psutil = "^6.0.0"
numpy = "^2.1.0"
[tool.poetry.group.test.dependencies]
pytest-mock = "^3.14.0"
pytest-cov = "^5.0.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.11.2"
types-requests = "^2.32.0.20240712"
types-tabulate = "^0.9.0.20240106"
ruff = "^0.6.2"
[tool.mypy]
plugins = [
"pydantic.mypy"
]
strict = true
ignore_missing_imports = true
allow_subclassing_any = true
allow_untyped_calls = true
pretty = true
show_error_codes = true
implicit_reexport = true
allow_untyped_decorators = true
warn_unused_ignores = false
warn_return_any = false
namespace_packages = true
files = "bananalyzer"
exclude = ["tests", "venv", "static", "bananalytics"]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "session"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"