-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (47 loc) · 1.25 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
[tool.poetry]
name = "benchmarks"
version = "0.1.0"
description = "Harness for benchmarking Codex against BitTorrent."
authors = ["Your Name <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
deluge-client = "^1.10.2"
pathvalidate = "^3.2.1"
torrentool = "^1.2.0"
pydantic = "^2.10.2"
pyyaml = "^6.0.2"
requests = "^2.32.3"
ruff = "^0.8.6"
tenacity = "^9.0.0"
fastapi = "^0.115.6"
elasticsearch = "^8.17.0"
aiohttp = "^3.11.11"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
mypy = "^1.13.0"
types-pyyaml = "^6.0.12.20240917"
types-requests = "^2.32.0.20241016"
httpx = "^0.28.1"
pytest-asyncio = "^0.25.3"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
[tool.poetry.group.agent.dependencies]
uvicorn = "^0.34.0"
[tool.pytest.ini_options]
markers = [
"deluge_integration: integration tests that run on the Deluge harness",
"codex_integration: integration tests that run on the Codex hadness",
]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope="session"
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
target-version = "py312"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
bittorrent-benchmarks = "benchmarks.cli:main"