From 881d8a6c0ba33b8bcf26c50251bbb8613c252816 Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Tue, 3 Sep 2024 09:35:08 -0500 Subject: [PATCH] Poetry --- poetry.lock | 46 ++++++++++++++++++++++++++++++++++++++++++++++ pyproject.toml | 15 +++++++++++++++ 2 files changed, 61 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..c7ecd79 --- /dev/null +++ b/poetry.lock @@ -0,0 +1,46 @@ +# This file is automatically @generated by Poetry and should not be changed by hand. + +[[package]] +name = "firepup650" +version = "1.0.43" +description = "Package containing various shorthand things I use, and a few imports I almost always use" +category = "main" +optional = false +python-versions = "<4.0,>=3.8" +files = [ + {file = "firepup650-1.0.43-py3-none-any.whl", hash = "sha256:685a3e00586bfa483108675de52bd05ef1ddbf50864fc4071c735bf36a726b23"}, + {file = "firepup650-1.0.43.tar.gz", hash = "sha256:985d679370d61490e4a7efa2022d0c1971c63223b5a455b374bfd1fe1b910612"}, +] + +[package.dependencies] +fkeycapture = ">=1.2.7,<2.0.0" +fpsql = ">=1,<1.0.26 || >1.0.26,<2" + +[[package]] +name = "fkeycapture" +version = "1.2.7" +description = "A way to capture keystrokes" +category = "main" +optional = false +python-versions = ">=3.8,<4.0" +files = [ + {file = "fkeycapture-1.2.7-py3-none-any.whl", hash = "sha256:c09cb715ccf2b9dfc25ecd39bffaf8fa794bc07410f666ac2ec15ebebebaabef"}, + {file = "fkeycapture-1.2.7.tar.gz", hash = "sha256:5ef9c90aec0420a2e462420a2bc8076a50ffd8566a9a022ac171c0e508f1d58d"}, +] + +[[package]] +name = "fpsql" +version = "1.0.5" +description = "An easy to use SQLite package" +category = "main" +optional = false +python-versions = ">=3.8,<4.0" +files = [ + {file = "fpsql-1.0.5-py3-none-any.whl", hash = "sha256:a31f4bf99d44c0095a8246bfd78bd39cf96d9b3591363a3f6538ca40914679a4"}, + {file = "fpsql-1.0.5.tar.gz", hash = "sha256:647d148c5a17bca3a147a3bb281cc12dfc36f6f3f3652f22a1b2a1a3b7367c93"}, +] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "a479ddf638ff7bad1ca1cc53b46e0822ec1c82b8c147cded332c3bb5253cda83" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9409f22 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "grader" +version = "0.0.1" +description = "" +authors = ["Firepup Sixfifty "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +firepup650 = "^1.0.43" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"