Big refactoring, still really a WIP, but I need to get this committed

This commit is contained in:
Patrick Marsee 2022-12-26 14:08:57 -05:00
parent 9251886638
commit f3db901918
21 changed files with 91 additions and 19 deletions

19
pyproject.toml Normal file
View file

@ -0,0 +1,19 @@
[project]
name = "gameshell"
version = "0.0.2"
authors = [
{ name="Patrick Marsee", email="me@cheesewatergames.net" },
]
description = "A game engine for text adventures."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3.0",
"Operating System :: OS Independent",
]
dependencies = [
"ruamel.yaml"
]