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"