diff options
| author | Sam Scholten | 2025-10-23 15:01:40 +1000 |
|---|---|---|
| committer | Sam Scholten | 2025-10-23 15:01:40 +1000 |
| commit | 4a7026759e099e5c81cc9c77f19182a23d2f0275 (patch) | |
| tree | dcdff1dc81401b4a56248c05f99da47121056d55 /pyproject.toml | |
| download | transivent-4a7026759e099e5c81cc9c77f19182a23d2f0275.tar.gz transivent-4a7026759e099e5c81cc9c77f19182a23d2f0275.zip | |
Initial release v1.0.0v1.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
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 23 |
1 files changed, 23 insertions, 0 deletions
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"] + |
