diff options
| author | Sam Scholten | 2025-09-11 15:00:02 +1000 |
|---|---|---|
| committer | Sam Scholten | 2025-09-11 15:00:02 +1000 |
| commit | ab0721fdcef668b1155f520198f082f026c6a82e (patch) | |
| tree | dbf87a03eba3d22a912c738d694ff7b13d48672f /pyproject.toml | |
| download | scopekit-ab0721fdcef668b1155f520198f082f026c6a82e.tar.gz scopekit-ab0721fdcef668b1155f520198f082f026c6a82e.zip | |
A new startv1.0.0
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 19 |
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"] |
