From d5873a3d2080edb654ced8604da1207201f10809 Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Sat, 24 Feb 2024 20:38:41 -0500 Subject: [PATCH] Add a pyproject.toml for pip. --- 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..2e20b9c --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,19 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "ElivenMinetest" +version = "0.2.0" +authors = [ + { name="Jake Gustafson", email="7557867+poikilos@users.noreply.github.com" }, +] +# requires-python = ">=3.3" +# TODO: (shutil.which requires 3.3 but) may need newer version, +# & other code may run on older version +# so leave commented to not block install. +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", + "Operating System :: OS Independent", +]