Setup poetry

This commit is contained in:
Firepup Sixfifty 2024-05-13 11:22:41 -05:00
parent 6bc38c400e
commit 9fdabd2f05
Signed by: Firepup650
GPG key ID: 7C92E2ABBBFAB9BA
2 changed files with 22 additions and 0 deletions

7
poetry.lock generated Normal file
View file

@ -0,0 +1,7 @@
# This file is automatically @generated by Poetry and should not be changed by hand.
package = []
[metadata]
lock-version = "2.0"
python-versions = "^3.11"
content-hash = "81b2fa642d7f2d1219cf80112ace12d689d053d81be7f7addb98144d56fc0fb2"

15
pyproject.toml Normal file
View file

@ -0,0 +1,15 @@
[tool.poetry]
name = "motd-news"
version = "1.0.0"
description = "A news program designed to be added to a motd, specifically for debian"
authors = ["Firepup Sixfifty <firepyp650@gmail.com>"]
readme = "README.md"
packages = [{include = "motd_news"}]
[tool.poetry.dependencies]
python = "^3.11"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"