From f07aba4fccca07aafff1b8013fa00a16349cfbc3 Mon Sep 17 00:00:00 2001 From: Andrei Cherniaev <27889022+AndreiCherniaev@users.noreply.github.com> Date: Mon, 4 May 2026 16:59:03 +0900 Subject: [PATCH] Add installation via poetry ability --- isz-tool.py => isz-tool/isz-tool.py | 0 pyproject.toml | 39 +++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) rename isz-tool.py => isz-tool/isz-tool.py (100%) create mode 100644 pyproject.toml diff --git a/isz-tool.py b/isz-tool/isz-tool.py similarity index 100% rename from isz-tool.py rename to isz-tool/isz-tool.py diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a075ac1 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,39 @@ +[project] +name = "isz-tool" +version = "0.1.0" +description = ".isz to .iso conversion" +authors = [ + {name = "Olivier Serres, Andrei Cherniaev"} +] +license = "GPL-3.0-or-later" +license-files = ["LICENSE"] +keywords = [ + "format-conversion-cli", +] +readme = "README.md" +requires-python = ">=3.2" +dependencies = [ +] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Environment :: Console", + "Intended Audience :: End Users/Desktop", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.2", + "Programming Language :: Python :: 3 :: Only", + "Topic :: System :: Archiving", +] + +[build-system] +requires = ["poetry-core>=2.0.0,<3.0.0"] +build-backend = "poetry.core.masonry.api" + +[project.urls] +"Homepage" = "https://en.wikipedia.org/wiki/UltraISO#ISZ_format" +"Repository" = "https://github.com/oserres/isz-tool" + +[tool.poetry] +packages = [ + { include = "../../../" }, +]