aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Albers Raviola <thomas@thomaslabs.org>2024-07-12 11:48:52 +0200
committerThomas Albers Raviola <thomas@thomaslabs.org>2024-07-12 11:48:52 +0200
commit665bff51d17329259a80e0aeae1b2af2f4caaa26 (patch)
tree7f93c4cb52b3e787c5eb1bd29e486d0fffb383b3
parentadf89bfb23c450ffde6554fe478671ee0c0749e9 (diff)
Set up build system and scripts
-rw-r--r--pyproject.toml18
-rw-r--r--schroedinger/schrodinger_plot.py5
-rw-r--r--schroedinger/schrodinger_solve.py5
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()