summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorSam Scholten2025-10-23 15:06:25 +1000
committerSam Scholten2025-10-23 15:22:54 +1000
commit307bf648d8e3fe852d7daf2fa1567d1896e50f7e (patch)
treed15344eab2003fd0a12544cc1ed9fbfef3e871d9 /pyproject.toml
parent4a7026759e099e5c81cc9c77f19182a23d2f0275 (diff)
downloadtransivent-307bf648d8e3fe852d7daf2fa1567d1896e50f7e.tar.gz
transivent-307bf648d8e3fe852d7daf2fa1567d1896e50f7e.zip
Release v2.0.0v2.0.0
Major API refactoring with simplified public interface. - Added EventProcessor for high-level event processing workflow - New utility functions for data preprocessing - Additional example scripts for different use cases - Comprehensive test suite - Updated documentation with migration guide
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index b94d957..859c39e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,17 +1,18 @@
[project]
name = "transivent"
-version = "0.1.0"
+version = "2.0.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 = [
+ "joblib",
"loguru",
"matplotlib",
"numba",
"Pillow",
"scipy",
- "scopekit @ git+https://git.samsci.com/cgit.cgi/scopekit",
+ "scopekit @ git+https://git.samsci.com/cgit.cgi/scopekit@main",
]
[build-system]