OptimaLab35/src/pyproject.toml

38 lines
953 B
TOML
Raw Normal View History

2025-01-30 14:29:45 +00:00
[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"
2025-01-30 14:29:45 +00:00
requires-python = ">=3.8"
dependencies = [
"optima35>=1.0.0, <2.0.0",
2025-02-09 17:52:33 +01:00
"PyPiUpdater>=0.7.0, <1.0.0",
"pyside6",
"PyYAML",
]
2025-01-30 14:29:45 +00:00
classifiers = [
2025-02-09 17:52:33 +01:00
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
"Topic :: Multimedia :: Graphics :: Editors",
2025-01-30 14:29:45 +00:00
"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 = ["OptimaLab35"]
[tool.hatch.version]
path = "OptimaLab35/__init__.py"