aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml19
1 files changed, 19 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..e265c03
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,19 @@
+[project]
+name = "scopekit"
+version = "0.1.0"
+description = "General-purpose oscilloscope plotting components."
+authors = [{ name = "Sam Scholten", email = "s.scholten@uq.edu.au" }]
+requires-python = ">=3.8"
+dependencies = [
+ "numpy",
+ "matplotlib",
+ "numba",
+ "PyQt6" # I guess flexible on this??
+]
+
+[build-system]
+requires = ["setuptools>=61.0"]
+build-backend = "setuptools.build_meta"
+
+[tool.setuptools.packages.find]
+where = ["src"]