diff options
author | Eddy Pedroni <epedroni@pm.me> | 2024-11-09 20:35:56 +0100 |
---|---|---|
committer | Eddy Pedroni <epedroni@pm.me> | 2024-11-09 20:35:56 +0100 |
commit | cda8197669409689be291660f93cb288ab2d31b3 (patch) | |
tree | 81db9b0c7c0491e0737cbffb39af6b935c0dfeb8 /gui-project/pyproject.toml | |
parent | a2257a900d4fffd6f94b73f1c48c62370ed1d684 (diff) |
Migrate to project-based structure
Diffstat (limited to 'gui-project/pyproject.toml')
-rw-r--r-- | gui-project/pyproject.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gui-project/pyproject.toml b/gui-project/pyproject.toml new file mode 100644 index 0000000..1e6fcf4 --- /dev/null +++ b/gui-project/pyproject.toml @@ -0,0 +1,24 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + +[project] +name = "solo_tool_gui" +authors = [ + { name = "Eddy Pedroni", email = "epedroni@pm.me" }, +] +description = "A Qt5-based GUI frontend for the solo_tool library" +requires-python = ">=3.12" +dependencies = [ + "PyQt5>=5.6", + "solo_tool" +] +dynamic = ["version"] + +[project.optional-dependencies] +dev = [ +] + +[project.gui-scripts] +solo-tool-gui = "solo_tool_gui:main" + |