-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 989 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 989 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
37
38
39
40
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[project]
name = "cmlibs.exporter"
dynamic = ["version"]
keywords = ["Export", "CMLibs", "Zinc"]
readme = "README.rst"
license = "Apache-2.0"
authors = [
{ name="Hugh Sorby", email="h.sorby@auckland.ac.nz" },
]
dependencies = [
'cmlibs.argon >= 0.4.0',
'cmlibs.zinc',
'exf2mbfxml',
'packaging',
'svgpathtools_light',
]
description = "Export CMLibs Zinc data to common mesh formats."
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.exporter"
[project.optional-dependencies]
opengl_hardware = ["PySide6"]
opengl_software = ["PyOpenGL"]
[tool.setuptools_scm]