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
28 lines (26 loc) · 711 Bytes
/
pyproject.toml
File metadata and controls
28 lines (26 loc) · 711 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "shayo_diffusion2d"
authors = [
{name = "shayo", email = "st196528@stud.uni-stuttgart.de"},
]
description = "A 2D diffusion equation solver."
version = "0.0.2"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["solver", "diffusion", "2D"]
license = "CC-BY-4.0"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy",
"matplotlib",
]
[project.urls]
Repository = "https://github.com/Noxaster/diffusion2d.git"
Issues = "https://github.com/Noxaster/diffusion2d/issues"