-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 987 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[project]
name = "cmlibs.widgets"
dynamic = ["version"]
keywords = ["CMLibs", "Zinc", "Widgets", "UI"]
readme = "README.rst"
license = { file = "LICENSE" }
authors = [
{ name="Hugh Sorby", email="h.sorby@auckland.ac.nz" },
]
dependencies = [
"cmlibs.maths >= 0.3",
"cmlibs.utils >= 0.6",
"PySide6",
"cmlibs.zinc >= 4.0",
"cmlibs.argon >= 0.4.0",
]
description = "A collection of Qt widgets and utilities for handling user interface interactions with the CMLibs Zinc library."
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
[project.urls]
Homepage = "https://cmlibs.org"
Repository = "https://github.com/CMLibs-Python/cmlibs.widgets"
[tool.setuptools_scm]