forked from finite-element/finite-element-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.33 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "finite-element-course"
version = "2024.0"
description="""Skeleton finite element implementation in support of MATH60022/MATH70022 at Imperial College London."""
license = "MIT"
authors = [
{ name = "David A. Ham", email = "[email protected]" },
{ name = "Colin J. Cotter", email = "[email protected]" },
]
dependencies = [
"ipython",
"matplotlib",
"numpy",
"scipy",
"pytest"
]
[project.urls]
Documentation = "https://finite-element.github.io"
[project.scripts]
plot_function_space_nodes = "fe_utils.scripts.plot_function_space_nodes:plot_function_space_nodes"
plot_mesh = "fe_utils.scripts.plot_mesh:plot_mesh"
plot_lagrange_basis_functions = "fe_utils.scripts.plot_lagrange_basis_functions:plot_lagrange_basis_functions"
plot_sin_function = "fe_utils.scripts.plot_sin_function:plot_sin_function"
plot_interpolate_lagrange = "fe_utils.scripts.plot_interpolate_lagrange:plot_interpolate_lagrange"
plot_lagrange_points = "fe_utils.scripts.plot_lagrange_points:plot_lagrange_points"
[project.optional-dependencies]
doc = [
"sphinx",
"sphinxcontrib-bibtex",
"sphinxcontrib-proof",
"sphinx-autobuild",
"sphinx-design",
"sphinxcontrib-youtube"
]
[tool.hatch.build.targets.wheel]
packages = ["fe_utils"]