-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (37 loc) · 836 Bytes
/
pyproject.toml
File metadata and controls
39 lines (37 loc) · 836 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
[project]
name = "Thermca"
requires-python = ">=3.10" # Black also interprets this
version = "0.10"
readme = "README.rst"
authors = [{name = "Steffen Schroeder"}]
license = {text = "GPL-3", license_file = "LICENSE.rst"}
classifiers = ["Development Status :: 3 - Alpha"]
dependencies = [
"numpy",
'sparse_dot_mkl ; platform_system != "Darwin"',
"scipy",
"sparse",
"matplotlib",
"pandas",
"jupyterlab",
"joblib",
"meshio",
"scikit-fem",
"pyvista[all,trame]",
# Test
"pytest",
# Building documentation
"sphinx",
"sphinx_rtd_theme",
"nbsphinx",
# 3D plotting in jupyterlab
"ipywidgets",
# Tetwild robust meshing
"trimesh",
"rtree",
]
[tool.setuptools.package-data]
docs = ["examples/*"]
[tool.black]
line-length = 88
skip-string-normalization = true