From 6ecda24d4bcadd9f1bce8f0c79df10c660c6abde Mon Sep 17 00:00:00 2001 From: silviana amethyst <1388063+ofloveandhate@users.noreply.github.com> Date: Wed, 24 Jul 2024 10:00:51 -0500 Subject: [PATCH] working towards distributable setup --- pyproject.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..869bb99 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,22 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "markdown2canvas" +version = "0.2" +authors = [ + { name="Silviana Amethyst", email="amethyst@uwec.edu" }, +] +description = "code for publishing markdown documents to Canvas pages" +readme = "README.md" +requires-python = ">=3.10" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: ", + "Operating System :: OS Independent", +] + +[project.urls] +Homepage = "https://github.com/ofloveandhate/markdown2canvas" +Issues = "https://github.com/ofloveandhate/markdown2canvas/issues"