From d695a099e5f9b425c14463778dc50181aae7931f Mon Sep 17 00:00:00 2001 From: Gabriella Agathon Date: Thu, 19 Feb 2026 11:15:27 -0700 Subject: [PATCH] add poetry generation --- pyproject.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..1647202 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,19 @@ +[project] +name = "very-bad-bot" +version = "1.0" +description = "Discord bot for Pilots' Lounge Discord Server" +authors = [ + {name = "Gabriella Agathon",email = "gstimac@msudenver.edu"} +] +readme = "README.md" +requires-python = ">=3.11" +dependencies = [ + "discord-py (==2.4.0)", + "pylint (>=4.0.4,<5.0.0)", + "pytest (>=9.0.2,<10.0.0)" +] + + +[build-system] +requires = ["poetry-core>=2.0.0,<3.0.0"] +build-backend = "poetry.core.masonry.api"