aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 83ca09281a20bc6880b1e0060930064d98029fa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "schroedinger"
version = "0.1"
requires-python = ">= 3.12"
dependencies = ["matplotlib", "numpy", "scipy"]
maintainers = [{name = "Thomas Albers Raviola", email = "thomasgu@uni-bremen.de"},
               {name = "Tim Suhling", email = "timsuh@uni-bremen.de"}]
description = "Numerical solver and plotter of solutions to the one-dimensional Schoedinger
               equation"
readme = "README.md"
license = {file = "COPYING"}

[project.scripts]
schrodinger_solve = "schroedinger.schrodinger_solve:main"
schrodinger_plot = "schroedinger.schrodinger_plot:main"