39 lines
1007 B
TOML
39 lines
1007 B
TOML
|
|
[project]
|
||
|
|
name = "kards-battle"
|
||
|
|
version = "0.2.0"
|
||
|
|
description = "KARDS WWII card game battle system clone for AI training"
|
||
|
|
authors = [
|
||
|
|
{name = "KARDS Battle Team"}
|
||
|
|
]
|
||
|
|
readme = "README.md"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
keywords = ["kards", "battle", "ai", "game", "wwii"]
|
||
|
|
classifiers = [
|
||
|
|
"Development Status :: 4 - Beta",
|
||
|
|
"Intended Audience :: Developers",
|
||
|
|
"Topic :: Games/Entertainment",
|
||
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
||
|
|
"Programming Language :: Python :: 3",
|
||
|
|
"Programming Language :: Python :: 3.11",
|
||
|
|
"Programming Language :: Python :: 3.12",
|
||
|
|
"Programming Language :: Python :: 3.13",
|
||
|
|
]
|
||
|
|
dependencies = [
|
||
|
|
"pytest>=8.4.1",
|
||
|
|
"pyyaml>=6.0.2",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
test = ["pytest"]
|
||
|
|
dev = ["pytest", "black", "flake8"]
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["hatchling"]
|
||
|
|
build-backend = "hatchling.build"
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
testpaths = ["tests"]
|
||
|
|
python_files = ["test_*.py"]
|
||
|
|
python_classes = ["Test*"]
|
||
|
|
python_functions = ["test_*"]
|