Set up poetry

This commit is contained in:
Firepup Sixfifty 2024-04-27 16:29:54 -05:00
parent fe686b0fd4
commit 64ddd9075c
Signed by: Firepup650
GPG key ID: 7C92E2ABBBFAB9BA
2 changed files with 33 additions and 0 deletions

17
poetry.lock generated Normal file
View file

@ -0,0 +1,17 @@
# This file is automatically @generated by Poetry and should not be changed by hand.
[[package]]
name = "playsound"
version = "1.3.0"
description = "Pure Python, cross platform, single function module with no dependencies for playing sounds."
category = "main"
optional = false
python-versions = "*"
files = [
{file = "playsound-1.3.0.tar.gz", hash = "sha256:cc6ed11d773034b0ef624e6bb4bf50f4b76b8414a59ce6d38afb89b423297ced"},
]
[metadata]
lock-version = "2.0"
python-versions = "^3.11"
content-hash = "79b7abd6f582a63358e09c50526f3f746f0564d87d938f8487db77c09481756f"

16
pyproject.toml Normal file
View file

@ -0,0 +1,16 @@
[tool.poetry]
name = "fallout-term"
version = "0.0.1"
description = ""
authors = ["Firepup Sixfifty <firepyp650@gmail.com>"]
readme = "README.md"
packages = []
[tool.poetry.dependencies]
python = "^3.11"
playsound = "^1.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"