-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
86 lines (76 loc) · 2.2 KB
/
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
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
83
84
85
86
[build-system]
requires = ["scikit-build-core", "pybind11", "setuptools_scm"]
build-backend = "scikit_build_core.build"
[project]
name = "pymem3dg"
authors = [
{ name = "Cuncheng Zhu", email = "[email protected]" },
{ name = "Christopher T. Lee", email = "[email protected]" },
]
description = "PyMem3DG: Membrane Dynamics in 3D using Discrete Differential Geometry"
readme = "README.md"
requires-python = ">=3.7"
keywords = [
"meshing",
"membrane mechanics",
"discrete differential geometry",
"Helfrich",
]
license = { text = "Mozilla Public License 2.0 (MPL 2.0)" }
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: C++",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"numpy",
"scipy",
"netCDF4",
"polyscope",
"matplotlib",
"seaborn",
"xarray",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = [
"docutils",
"jupyter_sphinx",
"markupsafe",
"nbsphinx",
"sphinx",
"sphinx-issues",
"sphinx_rtd_theme",
"sphinx-mdinclude"
]
tests = ["pytest"]
[tool.scikit-build]
cmake.args = ["-DBUILD_PYMEM3DG=ON", "-DSUITESPARSE=OFF"]
wheel.packages = ["python_src/pymem3dg"]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
install.components = ["PythonModule"]
install.strip = false
[tool.setuptools_scm] # Section required
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"error",
# Produced by seaborn
"ignore: distutils Version classes are deprecated. Use packaging.version instead.",
]
[tool.codespell]
skip = '*.ply,*.nc'
quiet-level = 3
ignore-words-list = "isplay,previouse,protol"