bittorrent-benchmarks/pyproject.toml

26 lines
549 B
TOML
Raw Permalink Normal View History

2024-10-30 23:22:09 +00:00
[tool.poetry]
name = "bittorrent-benchmarks"
version = "0.1.0"
description = "Harness for benchmarking Codex against BitTorrent."
authors = ["Your Name <you@example.com>"]
license = "MIT"
readme = "README.md"
2024-11-01 21:07:08 +00:00
package-mode = false
2024-10-30 23:22:09 +00:00
[tool.poetry.dependencies]
python = "^3.12"
deluge-client = "^1.10.2"
2024-11-01 21:07:08 +00:00
pathvalidate = "^3.2.1"
torrentool = "^1.2.0"
2024-10-30 23:22:09 +00:00
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
mypy = "^1.13.0"
2024-11-01 21:07:08 +00:00
[tool.mypy]
ignore_missing_imports = true
2024-10-30 23:22:09 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"