|
14 | 14 | # Fields marked as "Optional" may be commented out. |
15 | 15 |
|
16 | 16 | setup( |
17 | | - name='stempeg', |
18 | | - version='0.2.3', |
19 | | - description='Read and write stem/multistream audio files', |
| 17 | + name="stempeg", |
| 18 | + version="0.2.4", |
| 19 | + description="Read and write stem/multistream audio files", |
20 | 20 | long_description=long_description, |
21 | | - long_description_content_type='text/markdown', |
22 | | - url='http://github.com/faroit/stempeg', |
23 | | - author='Fabian-Robert Stoeter', |
24 | | - |
| 21 | + long_description_content_type="text/markdown", |
| 22 | + url="http://github.com/faroit/stempeg", |
| 23 | + author="Fabian-Robert Stoeter", |
| 24 | + |
25 | 25 | classifiers=[ |
26 | | - 'Development Status :: 4 - Beta', |
27 | | - 'Environment :: Console', |
28 | | - 'Intended Audience :: Telecommunications Industry', |
29 | | - 'Intended Audience :: Science/Research', |
30 | | - 'Programming Language :: Python :: 3.5', |
31 | | - 'Programming Language :: Python :: 3.6', |
32 | | - 'Programming Language :: Python :: 3.7', |
33 | | - 'Programming Language :: Python :: 3.8', |
34 | | - 'Topic :: Multimedia :: Sound/Audio :: Analysis', |
35 | | - 'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis' |
| 26 | + "Development Status :: 4 - Beta", |
| 27 | + "Environment :: Console", |
| 28 | + "Intended Audience :: Telecommunications Industry", |
| 29 | + "Intended Audience :: Science/Research", |
| 30 | + "Programming Language :: Python :: 3.9", |
| 31 | + "Programming Language :: Python :: 3.10", |
| 32 | + "Programming Language :: Python :: 3.11", |
| 33 | + "Topic :: Multimedia :: Sound/Audio :: Analysis", |
| 34 | + "Topic :: Multimedia :: Sound/Audio :: Sound Synthesis", |
36 | 35 | ], |
37 | 36 | zip_safe=True, |
38 | | - keywords='stems audio reader', |
39 | | - packages=find_packages(exclude=['tests']), |
| 37 | + keywords="stems audio reader", |
| 38 | + packages=find_packages(exclude=["tests"]), |
40 | 39 | # Dependencies, this installs the entire Python scientific |
41 | 40 | # computations stack |
42 | | - install_requires=[ |
43 | | - 'numpy>=1.6', |
44 | | - 'ffmpeg-python>=0.2.0' |
45 | | - ], |
| 41 | + install_requires=["numpy>=1.6", "ffmpeg-python>=0.2.0"], |
46 | 42 | extras_require={ |
47 | | - 'tests': [ |
48 | | - 'pytest', |
| 43 | + "tests": [ |
| 44 | + "pytest", |
49 | 45 | ], |
50 | 46 | }, |
51 | | - entry_points={'console_scripts': [ |
52 | | - 'stem2files=stempeg.cli:cli', |
53 | | - ]}, |
| 47 | + entry_points={ |
| 48 | + "console_scripts": [ |
| 49 | + "stem2files=stempeg.cli:cli", |
| 50 | + ] |
| 51 | + }, |
54 | 52 | project_urls={ # Optional |
55 | | - 'Bug Reports': 'https://github.com/faroit/stempeg/issues', |
| 53 | + "Bug Reports": "https://github.com/faroit/stempeg/issues", |
56 | 54 | }, |
57 | | - include_package_data=True |
| 55 | + include_package_data=True, |
58 | 56 | ) |
0 commit comments