From dd0277d92a0c5f1db041255e7306a4a4afc59eed Mon Sep 17 00:00:00 2001 From: MikeTheHammer Date: Thu, 12 Jan 2023 12:37:25 -0500 Subject: [PATCH] Add pyproject.toml file. --- pyproject.toml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..47c2f09 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,29 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "wmul_test_utils" +version = "0.2.0" +authors = [ + { name="Michael Stanley", email="stanley50@marshall.edu" }, +] +description = "Various utilities for testing WMUL-FM's other packages." +readme = "README.md" +requires-python = ">=3.6" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", + "Operating System :: OS Independent", + "Development Status :: 5 - Production/Stable", + "Topic :: Software Development :: Testing" +] + +[project.optional-dependencies] +test = [ + "pytest", "pytest-mock" +] + +[project.urls] +"Homepage" = "https://github.com/MikeTheHammer/wmul_test_utils" +"Bug Tracker" = "https://github.com/MikeTheHammer/wmul_test_utils/issues"