aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorSam Scholten2025-09-11 14:49:58 +1000
committerSam Scholten2025-09-11 14:49:58 +1000
commitcadac019b6cdabe5d42b3658414e1842662aac37 (patch)
treea4f147992ce6397d4ee25eacdae48c9514410ce0 /pyproject.toml
downloadpicostream-cadac019b6cdabe5d42b3658414e1842662aac37.tar.gz
picostream-cadac019b6cdabe5d42b3658414e1842662aac37.zip
init
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml24
1 files changed, 24 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..e3e8497
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,24 @@
+[build-system]
+requires = ["setuptools"]
+build-backend = "setuptools.build_meta"
+
+[project]
+name = "picostream"
+version = "0.2.0"
+dependencies = [
+ "numpy",
+ "loguru",
+ "picosdk",
+ "h5py",
+ "pyqtgraph",
+ "PyQt5",
+ "numba",
+ "click",
+]
+
+
+[tool.setuptools]
+packages = ["picostream"] # List the package names directly
+
+[project.scripts]
+picostream = "picostream.main:main"