Mercurial > hg > auditok
changeset 433:0f8f60771784
Update python version and requirements
author | Amine Sehili <amine.sehili@gmail.com> |
---|---|
date | Wed, 30 Oct 2024 17:23:49 +0100 |
parents | 81bc2375354f |
children | 89cc78530ea0 4b74e44900d2 |
files | setup.py |
diffstat | 1 files changed, 11 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Wed Oct 30 17:21:30 2024 +0100 +++ b/setup.py Wed Oct 30 17:23:49 2024 +0100 @@ -26,6 +26,13 @@ zip_safe=False, platforms="ANY", provides=["auditok"], + install_requires=[ + "numpy", + "matplotlib", + "pydub", + "pyaudio", + "tqdm", + ], classifiers=[ "Development Status :: 3 - Alpha", "Environment :: Console", @@ -36,12 +43,13 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Multimedia :: Sound/Audio :: Analysis", "Topic :: Scientific/Engineering :: Information Analysis", ],