From 276c27f1cecf1a365a2f507c7250fe0f815411dd Mon Sep 17 00:00:00 2001 From: Cameron Blankenbuehler Date: Thu, 8 Sep 2022 14:39:42 -0400 Subject: [PATCH] Add pyproject.toml for PyPI --- pyproject.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..1412cd3 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "boggler" +version = "0.0.1" +authors = [ + { name="Cameron Blankenbuehler", email="cameron.blankenbuehler@gmail.com" }, +] +description = "Utilities for solving the Boggle word game." +readme="README.md" +license = { file="LICENSE" } +requires-python = ">=3.7" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + "Operating System :: POSIX :: Linux", +] + +[project.urls] +"Homepage" = "https://github.com/cblanken/boggler" +"Bug Tracker" = "https://github.com/cblanken/boggler/issues"