forked from Simulation-Software-Engineering/diffusion2d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (24 loc) · 762 Bytes
/
pyproject.toml
File metadata and controls
26 lines (24 loc) · 762 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
# structure copied from https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "reinvt_diffusion2d"
version = "0.0.8"
authors = [
{name = "Vincent Rein", email = "st188087@stud.uni-stuttgart.de"},
]
description = "Solves the two-dimensional diffusion equation on a square plate using an explicit finite-difference scheme."
readme = "README.md"
requires-python = ">=3.6"
keywords = ["diffusion", "pde", "finite-difference", "simulation"]
license = "BSD-3-Clause"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy>=1.20",
"matplotlib>=3.1"
]
[tool.setuptools]
packages = ["reinvt_diffusion2d"]