From 2c93cbf9099e3c516507dd2daae12a6b0279ff83 Mon Sep 17 00:00:00 2001 From: snipe <72265661+notsniped@users.noreply.github.com> Date: Sun, 7 Apr 2024 09:23:34 +0530 Subject: [PATCH] Add `pyproject.toml` configuration --- pyproject.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f18c302 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[tool.poetry] +name = "skyblockpy" +version = "v2023.702.0" +description = "A simple Python API wrapper for the Hypixel Skyblock API." +authors = ["snipe <72265661+notsniped@users.noreply.github.com>"] +license = "GPL-3.0" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +requests = "^2.31.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"