From 4a7026759e099e5c81cc9c77f19182a23d2f0275 Mon Sep 17 00:00:00 2001 From: Sam Scholten Date: Thu, 23 Oct 2025 15:01:40 +1000 Subject: Initial release v1.0.0 Event detection and analysis pipeline for transient events in time-series data. - Event detection based on SNR thresholds - Configurable background estimation and noise analysis - Visualization with scopekit integration - Chunked processing for large files --- pyproject.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b94d957 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +[project] +name = "transivent" +version = "0.1.0" +description = "High-level analysis and plotting for transient events." +license = { file = "LICENSE" } +authors = [{ name = "Sam Scholten", email = "s.scholten@uq.edu.au" }] +requires-python = ">=3.8" +dependencies = [ + "loguru", + "matplotlib", + "numba", + "Pillow", + "scipy", + "scopekit @ git+https://git.samsci.com/cgit.cgi/scopekit", +] + +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + +[tool.setuptools.packages.find] +where = ["src"] + -- cgit v1.2.3