-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.2 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
with open('README.md', encoding='utf8') as f:
long_description = f.read()
setup(
name='Mix50',
version='0.5',
description='Fast and simple DJ and audio effects in Python with Librosa',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.11',
'Topic :: Multimedia :: Sound/Audio :: Analysis'
],
url='https://github.com/smullins998/Mix50',
author='Sean Mullins',
author_email='smullins998@gmail.com',
license='MIT',
packages=find_packages(),
install_requires=[
'librosa>=0.10.2.post1',
'numpy<2',
'pandas',
'SoundFile',
'pyrubberband',
'scipy',
'pydub',
'scikit-learn',
'ipython',
'essentia',
'matplotlib',
'sounddevice',
],
extras_require={
'ffmpeg': ['ffmpeg-python'],
'portaudio': ['pyaudio'],
},
keywords=['python', 'audio', 'DSP', 'DJ', 'audio analysis'],
include_package_data=True,
zip_safe=False
)