forked from ABI-Software/scaffoldfitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 892 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[project]
name = "scaffoldfitter"
dynamic = ["version"]
keywords = ["Medical", "Physiology", "Anatomical", "Mesh", "Finite Element", "Fitting", "SPARC"]
readme = "README.rst"
license = {file = "LICENSE"}
authors = [
{ name="Richard Christie", email="[email protected]" },
]
dependencies = [
"cmlibs.maths >= 0.6.2",
"cmlibs.utils >= 0.10.0",
"cmlibs.zinc >= 4.1"
]
description = "Scaffold/model geometric fitting library using Zinc."
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
[tool.setuptools_scm]