From 05b5fef583629bd81314de2b830c1203fbb35691 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Tue, 5 Mar 2024 11:01:37 -0800 Subject: [PATCH] [eryntools] Make eryntools a full-fledged package --- Python/eryntools/README.md | 0 Python/eryntools/pyproject.toml | 9 +++++++++ 2 files changed, 9 insertions(+) create mode 100644 Python/eryntools/README.md create mode 100644 Python/eryntools/pyproject.toml diff --git a/Python/eryntools/README.md b/Python/eryntools/README.md new file mode 100644 index 0000000..e69de29 diff --git a/Python/eryntools/pyproject.toml b/Python/eryntools/pyproject.toml new file mode 100644 index 0000000..7c87698 --- /dev/null +++ b/Python/eryntools/pyproject.toml @@ -0,0 +1,9 @@ +[project] +name = "eryntools" +version = "0.0.1" +authors = [ + { name="Eryn Wells", email="eryn@erynwells.me" } +] +description = "A collection of utilities and tools by and for Eryn Wells." +readme = "README.md" +requires-python = ">=3.9"