-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (76 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
82 lines (76 loc) · 1.89 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "pygem"
version = "2.0.4"
description = "Python Geometrical Morphing"
readme = {file = "README.md", content-type = "text/markdown"}
keywords = [
"vtk", "free-form-deformation", "iges", "radial-basis-function",
"deformation", "shape design", "inverse-distance-weighting",
"custom deformation", "mesh parameterization"
]
authors = [
{name = "Marco Tezzele", email = "marcotez@gmail.com"},
{name = "Nicola Demo", email = "demo.nicola@gmail.com"},
{name = "Andrea Mola", email = "amola@sissa.it"}
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics"
]
requires-python = ">=3.9"
dependencies = [
"future",
"numpy",
"scipy",
"matplotlib",
"vtk"
]
[project.urls]
Homepage = "https://github.com/mathLab/PyGeM"
Documentation = "http://mathlab.github.io/PyGeM/"
Repository = "https://github.com/mathLab/PyGeM"
"Bug Reports" = "https://github.com/mathLab/PyGeM/issues"
[project.optional-dependencies]
docs = [
"Sphinx",
"sphinx_rtd_theme"
]
test = [
"pytest",
"pytest-cov"
]
tut = [
"jupyter",
"notebook",
"ipywidgets",
"nbconvert",
]
dev = [
"Sphinx",
"sphinx_rtd_theme",
"pytest",
"pytest-cov",
"jupyter",
"notebook",
"ipywidgets",
"nbconvert",
"black",
"pylint"
]
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["pygem*"]
[tool.black]
line-length = 80