From 5b081e79cc70e0a7f7ae5dd3909b82ab7084f66e Mon Sep 17 00:00:00 2001 From: Jeremy Wright Date: Fri, 13 Oct 2023 11:11:21 -0400 Subject: [PATCH] Added pyproject.toml file so the CLI could be installed via pip --- pyproject.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a733bcb --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "cq-cli" +version = "2.1.0" +license = "Apache-2.0" +authors = [ + { name="Jeremy Wright" }, +] +description = "Command Line Interface for executing CadQuery scripts and converting their output to another format." +readme = "README.md" +requires-python = ">=3.8" +classifiers = [ + "Programming Language :: Python :: 3", + "Operating System :: OS Independent", +] +dependencies = [ + 'cadquery >= 2.3.1', +] + +[project.urls] +"Homepage" = "https://github.com/CadQuery/cq-cli" +"Bug Tracker" = "https://github.com/CadQuery/cq-cli/issues"