From cda8197669409689be291660f93cb288ab2d31b3 Mon Sep 17 00:00:00 2001 From: Eddy Pedroni Date: Sat, 9 Nov 2024 20:35:56 +0100 Subject: Migrate to project-based structure --- cli-project/pyproject.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 cli-project/pyproject.toml (limited to 'cli-project/pyproject.toml') diff --git a/cli-project/pyproject.toml b/cli-project/pyproject.toml new file mode 100644 index 0000000..7d31a09 --- /dev/null +++ b/cli-project/pyproject.toml @@ -0,0 +1,24 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + +[project] +name = "solo_tool_cli" +authors = [ + { name = "Eddy Pedroni", email = "epedroni@pm.me" }, +] +description = "A CLI frontend for the solo_tool library" +requires-python = ">=3.12" +dependencies = [ + "solo_tool" +] +dynamic = ["version"] + +[project.optional-dependencies] +dev = [ + "pytest" +] + +[project.scripts] +solo-tool-cli = "solo_tool_cli:main" + -- cgit v1.2.3