2025-01-03 12:21:43 +01:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "OptimaLab35"
|
2025-01-03 13:45:59 +01:00
|
|
|
dynamic = ["version"]
|
2025-01-03 12:21:43 +01:00
|
|
|
authors = [{ name = "Mr. Finchum" }]
|
2025-01-13 14:53:43 +00:00
|
|
|
description = "User interface for optima35."
|
|
|
|
readme = "pip_README.md"
|
2025-01-03 12:21:43 +01:00
|
|
|
requires-python = ">=3.8"
|
2025-01-16 18:08:02 +00:00
|
|
|
dependencies = ["optima35>=0.6.7", "pyside6", "PyYAML", "packaging"]
|
2025-01-03 12:21:43 +01:00
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
2025-01-23 16:37:26 +01:00
|
|
|
Source = "https://gitlab.com/CodeByMrFinchum/OptimaLab35"
|
2025-01-03 12:21:43 +01:00
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
OptimaLab35 = "OptimaLab35.main:main"
|
|
|
|
|
2025-01-03 12:36:19 +01:00
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
packages = ["src/OptimaLab35"]
|
2025-01-03 13:45:59 +01:00
|
|
|
|
|
|
|
[tool.hatch.version]
|
|
|
|
path = "src/OptimaLab35/__init__.py"
|