-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (48 loc) · 2.18 KB
/
setup.py
File metadata and controls
53 lines (48 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import find_packages, setup
# not possible due to importing not installed modules
# from source.audioQualityTester import __version__ as version
with open('Readme.md', 'r') as f:
long_description = f.read()
setup(
name="audioQualityTester",
version='0.2.3',
description="A standalone application for testing the differences of MP3 formats.",
packages=find_packages(),
package_data= {'audioQualityTester': ['resources/*',
'view/Generated/*',
'view/Project/*',
'view/Project/desinger/*',
'view/ProjectContent/*',
'view/ProjectContent/fonts/*',
'view/Python/*',
'view/Python/autogen/*'
]},
include_package_data=True,
# package_dir={'': 'audioQualityTester'},
long_description=long_description,
long_description_content_type='text/markdown',
author='Julian Wagner',
author_email='julian.s.wagner@t-online.de',
url='https://github.com/SojaSurfer/AudioQualityTester.git',
license='GNU General Public License v3 (GPLv3)',
install_requires=['wheel>=0.30.0,<1.0',
'setuptools>=74.0,<77.0',
'PySide6>=6.0,<=7.0',
'PySide6_Addons>=6.0,<=7.0',
'PySide6_Essentials>=6.0,<=7.0',
'pygame>=2.0,<=3.0',
'pydub>=0.20,<=1.0',
'librosa>=0.10,<=1.0',
'mutagen>=1.0,<=2.0',
'numpy>=1.0,<=2.0',
'scipy>=1.0,<=2.0',
'matplotlib>=3.0,<=4.0',
'tqdm>=4.0,<=5.0',
],
extras_require={'dev': ['rich<=13.0,<=14.0']},
python_requires='>=3.10,<3.14',
classifiers=['Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
)