Files
my-botty/pyproject.toml
alexpolo1andClaude Opus 5 e17b8c6c94 release: v0.10.0 — the stealth subsystem actually runs
69 commits since v0.9.1. Most of what landed was found by measuring which
behaviours FIRED, not by reading code: AFK breaks had gone 0-for-225 against a
configured 5%/game, eight [stealth] settings were declared in params.ini and
never loaded into Config(), and several functions had no callers at all.

Nightmare failure rate ~11% -> 1.0% over 100 games; hell went from dying on
game 4 to 0.0% over 59.

Co-Authored-By: Claude Opus 5 <[email protected]>
2026-08-28 17:04:38 +02:00

46 lines
927 B
TOML

[project]
name = "botty"
version = "0.10.0"
description = "Pixelbot for Diablo 2 Resurrected"
requires-python = ">=3.10,<3.11"
dependencies = [
"pywin32",
"opencv-python==4.5.5.64",
"transitions",
"mss==7.0.1",
"numpy==1.26.4",
"pydantic",
"PyYAML",
"beautifultable",
"pytweening",
"requests",
"rapidfuzz==2.15.1",
"pyparsing",
"graphviz",
"psutil",
"cryptography",
"pillow",
"discord.py",
"parse",
"typing_extensions",
"colorama",
"dataclasses-json",
# tesserocr must be installed separately - see development.md
]
[project.scripts]
botty-next = "botty_next.cli:main"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-env",
# pytest-pythonpath is deprecated; use [tool.pytest.ini_options] pythonpath instead
"pytest-mock",
"coverage",
]
[tool.pytest.ini_options]
pythonpath = ["./src"]
testpaths = ["test"]