yaaat 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
yaaat/__init__.py ADDED
@@ -0,0 +1,13 @@
1
+ # Copyright (c) 2025 Ashlae Blum'e | laelume
2
+ # Licensed under the MIT License
3
+
4
+ """YAAAT - Yet Another Audio Annotation Tool"""
5
+
6
+ from .changepoint_annotator import ChangepointAnnotator, main
7
+ from .peak_annotator import PeakAnnotator
8
+ from .main import YAATApp, main
9
+
10
+ __version__ = "0.1.0"
11
+ __author__ = "laelume"
12
+ __license__ = "MIT"
13
+ __all__ = ["ChangepointAnnotator", "PeakAnnotator", "YAATApp"]
yaaat/__main__.py ADDED
@@ -0,0 +1,5 @@
1
+ """Entry point when running python -m yaaat"""
2
+ from yaaat.main import main
3
+
4
+ if __name__ == "__main__":
5
+ main()