diff options
-rw-r--r-- | pyproject.toml | 18 | ||||
-rw-r--r-- | schroedinger/schrodinger_plot.py | 5 | ||||
-rw-r--r-- | schroedinger/schrodinger_solve.py | 5 |
3 files changed, 28 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f28ca29 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,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" diff --git a/schroedinger/schrodinger_plot.py b/schroedinger/schrodinger_plot.py new file mode 100644 index 0000000..9369e2e --- /dev/null +++ b/schroedinger/schrodinger_plot.py @@ -0,0 +1,5 @@ +def main(): + pass + +if __name__ == '__main__': + main() diff --git a/schroedinger/schrodinger_solve.py b/schroedinger/schrodinger_solve.py new file mode 100644 index 0000000..9369e2e --- /dev/null +++ b/schroedinger/schrodinger_solve.py @@ -0,0 +1,5 @@ +def main(): + pass + +if __name__ == '__main__': + main() |