-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
29 lines (26 loc) · 919 Bytes
/
setup.py
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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name='mixingbear',
version='0.0.2',
description='Automatic beat-mixing of music files',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Multimedia :: Sound/Audio :: Mixers'
],
keywords='Automatic beat-mixing of music files. audio analysis',
url='https://github.com/dodiku/MixingBear',
author='Dror Ayalon',
author_email='d.stamail@gmail.com',
license='MIT',
packages=['mixingbear'],
install_requires=[
'audioowl',
'pydub>=0.20.0,<0.20.1',
],
include_package_data=True,
zip_safe=False)