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

[project]
name = "schroedinger"
version = "0.1"
requires-python = ">= 3.12"
dependencies = ["numpy"]
maintainers = [{name = "Thomas Albers Raviola", email = "thomasgu@uni-bremen.de"},
               {name = "Tim Suhling", email = "timsuh@uni-bremen.de"}]
description = ""
readme = "README.md"
license = {file = "COPYING"}

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