From 18ba2ab0b2f752ae1ed293aa92da846fa1e75414 Mon Sep 17 00:00:00 2001 From: CodeByMrFinchum Date: Fri, 3 Jan 2025 12:21:43 +0100 Subject: [PATCH] Used for building pypi package. --- pyproject.toml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b6b355f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "OptimaLab35" +version = "0.0.4-a1" +authors = [{ name = "Mr. Finchum" }] +description = "User interface for OPTIMA35." +readme = "README.md" +requires-python = ">=3.8" +dependencies = ["optima35", "pyside6"] +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", + "Operating System :: OS Independent", +] + +[project.urls] +Homepage = "https://gitlab.com/CodeByMrFinchum/OptimaLab35" + +[project.scripts] +OptimaLab35 = "OptimaLab35.main:main" + +# used for when installing package localy. +#[tool.hatch.build.targets.wheel] +#packages = ["src/OptimaLab35"]