From 9fdabd2f0518f9a3111c038d698aa79a902fbda0 Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Mon, 13 May 2024 11:22:41 -0500 Subject: [PATCH] Setup poetry --- poetry.lock | 7 +++++++ pyproject.toml | 15 +++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 poetry.lock create mode 100644 pyproject.toml diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..a4abe38 --- /dev/null +++ b/poetry.lock @@ -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" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..49760fb --- /dev/null +++ b/pyproject.toml @@ -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 "] +readme = "README.md" +packages = [{include = "motd_news"}] + +[tool.poetry.dependencies] +python = "^3.11" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"