From 665bff51d17329259a80e0aeae1b2af2f4caaa26 Mon Sep 17 00:00:00 2001 From: Thomas Albers Raviola Date: Fri, 12 Jul 2024 11:48:52 +0200 Subject: Set up build system and scripts --- pyproject.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') 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" -- cgit v1.2.3