Files
APWorldTester/pyproject.toml
Skilly eba8c0eb8a Delete the archipelago_tester package
Left behind by the rename to apworld_tester: the new package was added
but the old tree was never removed, so both were committed and both
were installed. Nothing imported it and 58 of its 85 files had since
diverged, but it stayed importable and shadowed the live code.

Constrain packages.find to apworld_tester* so a stray directory under
src/ cannot be packaged again.
2026-09-06 16:19:51 +02:00

32 lines
662 B
TOML

[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "APWorldTester"
version = "0.1.0"
description = "Tests Archipelago community worlds by generating seeds with them"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [
"requests",
"beautifulsoup4",
"pyyaml",
]
[project.scripts]
apworld-tester = "apworld_tester.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["apworld_tester*"]
[tool.setuptools.package-data]
apworld_tester = [
"templates/*.yaml",
"container/Dockerfile.test",
"container/drivers/*.py",
]