audio-tuner-gui 0.9.1__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.
@@ -0,0 +1,39 @@
1
+ # This file is part of Audio Tuner.
2
+ #
3
+ # Copyright 2025, 2026 Jessie Blue Cassell <bluesloth600@gmail.com>
4
+ #
5
+ # This program is free software: you can redistribute it and/or modify
6
+ # it under the terms of the GNU General Public License as published by
7
+ # the Free Software Foundation, either version 3 of the License, or
8
+ # (at your option) any later version.
9
+ #
10
+ # This program is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ # GNU General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU General Public License
16
+ # along with this program. If not, see <https://www.gnu.org/licenses/>.
17
+
18
+ __all__ = [
19
+ 'analysis',
20
+ 'common',
21
+ 'display',
22
+ 'export',
23
+ 'file_selector',
24
+ 'log_viewer',
25
+ 'option_panel',
26
+ 'player',
27
+ 'VERSION',
28
+ 'PKGDIR',
29
+ ]
30
+
31
+ # Development versions: X.Y.Z.devN
32
+ # Release candidates: X.Y.ZrcN
33
+ # Releases: X.Y.Z
34
+
35
+ VERSION = '0.9.1'
36
+
37
+ from os.path import dirname
38
+
39
+ PKGDIR = dirname(__spec__.origin)