Porównaj commity

...

2 Commity

Autor SHA1 Wiadomość Data
Ewald de Wit 5fb07e94b0 v1.4.2 2023-01-02 10:22:22 +01:00
Ewald de Wit f64a2954ce Python 3.11 support 2023-01-02 10:21:35 +01:00
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -3,5 +3,4 @@ pyqtgraph~=0.12.4
PyQt6~=6.3.1
eventkit~=0.8.9
sounddevice~=0.4.5
numba~=0.56.2
setuptools~=59.8.0

Wyświetl plik

@ -7,7 +7,7 @@ with open("README.rst", 'r', encoding="utf-8") as f:
setup(
name='hifiscan',
version='1.4.1',
version='1.4.2',
description='Optimize the audio quality of loudspeakers',
long_description=long_description,
packages=['hifiscan'],
@ -23,6 +23,7 @@ setup(
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
],
keywords='frequency impulse response audio spectrum equalizer',
@ -30,6 +31,6 @@ setup(
'gui_scripts': ['hifiscan=hifiscan.app:main']
},
python_requires=">=3.8",
install_requires=['eventkit', 'numba', 'numpy', 'PyQt6', 'pyqtgraph',
install_requires=['eventkit', 'numpy', 'PyQt6', 'pyqtgraph',
'sounddevice']
)