initial commit

This commit is contained in:
Skilly
2026-09-06 15:12:38 +02:00
parent 4caf096780
commit 0d77a07291
185 changed files with 15465 additions and 185 deletions

30
pyproject.toml Normal file
View File

@@ -0,0 +1,30 @@
[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"]
[tool.setuptools.package-data]
apworld_tester = [
"templates/*.yaml",
"container/Dockerfile.test",
"container/drivers/*.py",
]