-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 828 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 828 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[project]
name = "cmlibs.utils"
dynamic = ["version"]
keywords = ["Utilities", "CMLibs", "Zinc"]
readme = "README.rst"
license = "Apache-2.0"
authors = [
{ name="Hugh Sorby", email="h.sorby@auckland.ac.nz" },
]
dependencies = [
"cmlibs.maths >= 0.5",
"cmlibs.zinc >= 4.1.3"
]
description = "Utilities for 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.utils"
[tool.setuptools_scm]