HiFiScan/setup.py

38 wiersze
1.3 KiB
Python

2022-09-11 11:28:25 +00:00
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open("README.rst", 'r', encoding="utf-8") as f:
long_description = f.read()
setup(
name='hifiscan',
2023-11-29 14:59:42 +00:00
version='1.5.2',
2022-09-11 11:28:25 +00:00
description='Optimize the audio quality of loudspeakers',
long_description=long_description,
packages=['hifiscan'],
url='https://github.com/erdewit/hifiscan',
author='Ewald R. de Wit',
author_email='ewald.de.wit@gmail.com',
license='BSD',
classifiers=[
2022-09-11 11:49:35 +00:00
'Development Status :: 5 - Production/Stable',
2022-09-11 11:28:25 +00:00
'Intended Audience :: End Users/Desktop',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
2023-01-02 09:21:35 +00:00
'Programming Language :: Python :: 3.11',
2023-11-23 14:02:54 +00:00
'Programming Language :: Python :: 3.12',
2022-09-11 11:28:25 +00:00
'Programming Language :: Python :: 3 :: Only',
],
keywords='frequency impulse response audio spectrum equalizer',
entry_points={
'gui_scripts': ['hifiscan=hifiscan.app:main']
},
2022-09-11 11:45:35 +00:00
python_requires=">=3.8",
2023-01-02 09:21:35 +00:00
install_requires=['eventkit', 'numpy', 'PyQt6', 'pyqtgraph',
'sounddevice']
2022-09-11 11:28:25 +00:00
)