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
27 lines (25 loc) · 850 Bytes
/
pyproject.toml
File metadata and controls
27 lines (25 loc) · 850 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
#copy structur from https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "schoenan_diffusion2d"
version = "0.0.10"
authors = [
{name = "Aaron Schöne", email = "st183829@stud.uni-stuttgart.de"},
]
description = "This small Python project solves the two-dimensional diffusion (heat) equation on a square plate using a finite-difference scheme."
readme = "README.md"
requires-python = ">=3.6"
keywords = ["diffusion", "PDE", "finite-diffrence", "simulation"]
license = "BSD-3-Clause"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy>=1.20",
"matplotlib>=3.1"
]
[tool.setuptools.packages.find]
include = ["schoenan_diffusion2d*"]
exclude = ["diffusion*", "d_test*", "__pycache__"]