From 0dd2c2788b062252708b56a74a83680ed345cfcf Mon Sep 17 00:00:00 2001 From: CodeByMrFinchum Date: Wed, 5 Feb 2025 14:30:34 +0100 Subject: [PATCH] Moved .toml, reduced file size of packages --- pyproject.toml | 34 ---------------------------------- src/pyproject.toml | 8 +++++++- 2 files changed, 7 insertions(+), 35 deletions(-) delete mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index 57042c5..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,34 +0,0 @@ -[build-system] -requires = ["hatchling"] -build-backend = "hatchling.build" - -[project] -name = "OptimaLab35" -dynamic = ["version"] -authors = [{ name = "Mr Finchum" }] -description = "User interface for optima35." -readme = "pip_README.md" -requires-python = ">=3.8" -dependencies = [ - "optima35>=1.0.0, <2.0.0", - "PyPiUpdater>=0.6.0, <1.0.0", - "pyside6", - "PyYAML", -] -classifiers = [ - "Programming Language :: Python :: 3", - "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", - "Operating System :: OS Independent", -] - -[project.urls] -Source = "https://gitlab.com/CodeByMrFinchum/OptimaLab35" - -[project.scripts] -OptimaLab35 = "OptimaLab35.__main__:main" - -[tool.hatch.build.targets.wheel] -packages = ["src/OptimaLab35"] - -[tool.hatch.version] -path = "src/OptimaLab35/__init__.py" diff --git a/src/pyproject.toml b/src/pyproject.toml index 4e3097a..9e88304 100644 --- a/src/pyproject.toml +++ b/src/pyproject.toml @@ -7,8 +7,14 @@ name = "OptimaLab35" dynamic = ["version"] authors = [{ name = "Mr Finchum" }] description = "User interface for optima35." +readme = "../pip_README.md" requires-python = ">=3.8" -dependencies = ["optima35>=1.0.0, <2.0.0", "PyYAML", "PyPyUpdater"] +dependencies = [ + "optima35>=1.0.0, <2.0.0", + "PyPiUpdater>=0.6.0, <1.0.0", + "pyside6", + "PyYAML", +] classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",