comparison setup.py @ 433:0f8f60771784

Update python version and requirements
author Amine Sehili <amine.sehili@gmail.com>
date Wed, 30 Oct 2024 17:23:49 +0100
parents 08a7af37f2e9
children 68f6b42e7a65
comparison
equal deleted inserted replaced
432:81bc2375354f 433:0f8f60771784
24 include_package_data=True, 24 include_package_data=True,
25 package_data={"auditok": ["data/*"]}, 25 package_data={"auditok": ["data/*"]},
26 zip_safe=False, 26 zip_safe=False,
27 platforms="ANY", 27 platforms="ANY",
28 provides=["auditok"], 28 provides=["auditok"],
29 install_requires=[
30 "numpy",
31 "matplotlib",
32 "pydub",
33 "pyaudio",
34 "tqdm",
35 ],
29 classifiers=[ 36 classifiers=[
30 "Development Status :: 3 - Alpha", 37 "Development Status :: 3 - Alpha",
31 "Environment :: Console", 38 "Environment :: Console",
32 "Intended Audience :: Science/Research", 39 "Intended Audience :: Science/Research",
33 "Intended Audience :: Developers", 40 "Intended Audience :: Developers",
34 "Intended Audience :: Information Technology", 41 "Intended Audience :: Information Technology",
35 "Intended Audience :: Telecommunications Industry", 42 "Intended Audience :: Telecommunications Industry",
36 "License :: OSI Approved :: MIT License", 43 "License :: OSI Approved :: MIT License",
37 "Operating System :: OS Independent", 44 "Operating System :: OS Independent",
38 "Programming Language :: Python", 45 "Programming Language :: Python",
39 "Programming Language :: Python :: 3.4",
40 "Programming Language :: Python :: 3.5",
41 "Programming Language :: Python :: 3.6",
42 "Programming Language :: Python :: 3.7", 46 "Programming Language :: Python :: 3.7",
43 "Programming Language :: Python :: 3.8", 47 "Programming Language :: Python :: 3.8",
44 "Programming Language :: Python :: 3.9", 48 "Programming Language :: Python :: 3.9",
49 "Programming Language :: Python :: 3.10",
50 "Programming Language :: Python :: 3.11",
51 "Programming Language :: Python :: 3.12",
52 "Programming Language :: Python :: 3.13",
45 "Topic :: Multimedia :: Sound/Audio :: Analysis", 53 "Topic :: Multimedia :: Sound/Audio :: Analysis",
46 "Topic :: Scientific/Engineering :: Information Analysis", 54 "Topic :: Scientific/Engineering :: Information Analysis",
47 ], 55 ],
48 entry_points={"console_scripts": ["auditok = auditok.cmdline:main"]}, 56 entry_points={"console_scripts": ["auditok = auditok.cmdline:main"]},
49 ) 57 )