2024-10-30 20:22:09 -03:00
|
|
|
[tool.poetry]
|
2024-12-01 23:12:49 -03:00
|
|
|
name = "benchmarks"
|
2024-10-30 20:22:09 -03:00
|
|
|
version = "0.1.0"
|
|
|
|
description = "Harness for benchmarking Codex against BitTorrent."
|
|
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.12"
|
|
|
|
deluge-client = "^1.10.2"
|
2024-11-01 18:07:08 -03:00
|
|
|
pathvalidate = "^3.2.1"
|
|
|
|
torrentool = "^1.2.0"
|
2024-11-26 19:53:59 -03:00
|
|
|
pydantic = "^2.10.2"
|
2024-11-27 11:22:07 -03:00
|
|
|
pyyaml = "^6.0.2"
|
2024-12-04 19:04:57 -03:00
|
|
|
requests = "^2.32.3"
|
2024-12-14 06:30:53 -03:00
|
|
|
ruff = "^0.8.3"
|
2024-10-30 20:22:09 -03:00
|
|
|
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
|
|
pytest = "^8.3.3"
|
|
|
|
mypy = "^1.13.0"
|
2024-11-27 11:22:07 -03:00
|
|
|
types-pyyaml = "^6.0.12.20240917"
|
2024-12-03 17:50:27 -03:00
|
|
|
types-requests = "^2.32.0.20241016"
|
2024-10-30 20:22:09 -03:00
|
|
|
|
2024-11-27 13:52:04 -03:00
|
|
|
[tool.pytest.ini_options]
|
|
|
|
markers = [
|
|
|
|
"integration: marks tests as integration tests"
|
|
|
|
]
|
|
|
|
|
2024-11-01 18:07:08 -03:00
|
|
|
[tool.mypy]
|
|
|
|
ignore_missing_imports = true
|
|
|
|
|
2024-10-30 20:22:09 -03:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2024-12-01 23:12:49 -03:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2024-12-02 14:52:14 -03:00
|
|
|
bittorrent-benchmarks = "benchmarks.cli:main"
|