Skip to content

Commit fd4048c

Browse files
committed
added python 3.13 to python requires
1 parent a9df422 commit fd4048c

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

audioQualityTester.egg-info/PKG-INFO

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: audioQualityTester
3-
Version: 0.2
3+
Version: 0.2.2
44
Summary: A standalone application for testing the differences of MP3 formats.
55
Home-page: https://github.com/SojaSurfer/AudioQualityTester.git
66
Author: Julian Wagner
@@ -9,10 +9,11 @@ License: GNU General Public License v3 (GPLv3)
99
Classifier: Programming Language :: Python :: 3
1010
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
1111
Classifier: Operating System :: OS Independent
12-
Requires-Python: >=3.10
12+
Requires-Python: >=3.10,<3.14
1313
Description-Content-Type: text/markdown
1414
License-File: LICENSE.txt
15-
Requires-Dist: bson>=0.5.10
15+
Requires-Dist: wheel<1.0,>=0.30.0
16+
Requires-Dist: setuptools<77.0,>=74.0
1617
Requires-Dist: PySide6<=7.0,>=6.0
1718
Requires-Dist: PySide6_Addons<=7.0,>=6.0
1819
Requires-Dist: PySide6_Essentials<=7.0,>=6.0
@@ -39,19 +40,18 @@ The Audio Quality Tester is a Python tool with GUI that let's you compare lossy
3940
## 1 Getting Started
4041
Download the release file and pip-install it or build it from source. You need to install ffmpeg.
4142

43+
**FFMPEG**
44+
- macOS: brew install ffmpeg
45+
- Ubuntu/Debian: sudo apt-get install ffmpeg
46+
- Windows: Download FFmpeg from ffmpeg.org and add it to the system PATH.
47+
4248
Launch the main function to start the program:
4349
```
4450
import audioQualityTester
4551

4652
audioQualityTester.main()
4753
```
4854

49-
**FFMPEG**
50-
- macOS: brew install ffmpeg
51-
- Ubuntu/Debian: sudo apt-get install ffmpeg
52-
- Windows: Download FFmpeg from ffmpeg.org and add it to the system PATH.
53-
54-
5555
## 2 Documentation
5656
The tool will start a GUI which consists out of three screens.
5757

audioQualityTester.egg-info/requires.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
bson>=0.5.10
1+
wheel<1.0,>=0.30.0
2+
setuptools<77.0,>=74.0
23
PySide6<=7.0,>=6.0
34
PySide6_Addons<=7.0,>=6.0
45
PySide6_Essentials<=7.0,>=6.0

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="audioQualityTester",
13-
version='0.2',
13+
version='0.2.2',
1414
description="A standalone application for testing the differences of MP3 formats.",
1515
packages=find_packages(),
1616
package_data= {'audioQualityTester': ['resources/*',
@@ -30,7 +30,8 @@
3030
author_email='[email protected]',
3131
url='https://github.com/SojaSurfer/AudioQualityTester.git',
3232
license='GNU General Public License v3 (GPLv3)',
33-
install_requires=['bson >= 0.5.10',
33+
install_requires=['wheel>=0.30.0,<1.0',
34+
'setuptools>=74.0,<77.0',
3435
'PySide6>=6.0,<=7.0',
3536
'PySide6_Addons>=6.0,<=7.0',
3637
'PySide6_Essentials>=6.0,<=7.0',
@@ -44,7 +45,7 @@
4445
'tqdm>=4.0,<=5.0',
4546
],
4647
extras_require={'dev': ['rich<=13.0,<=14.0']},
47-
python_requires='>=3.10',
48+
python_requires='>=3.10,<3.14',
4849
classifiers=['Programming Language :: Python :: 3',
4950
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
5051
'Operating System :: OS Independent',

0 commit comments

Comments
 (0)