initial commit
This commit is contained in:
30
pyproject.toml
Normal file
30
pyproject.toml
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user