-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
47 lines (44 loc) · 1.6 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
with open('README.md', 'r') as fdesc:
long_description = fdesc.read()
setup(
name='libtsm',
version='1.1.2',
description='Python Package for Time-Scale Modification and Pitch-Shifting',
author='Sebastian Rosenzweig, Simon Schwär, Jonathan Driedger and Meinard Müller',
author_email='sebastian.rosenzweig@audiolabs-erlangen.de',
url='https://www.audiolabs-erlangen.de/resources/MIR/2021-DAFX-AdaptivePitchShifting',
download_url='https://github.com/meinardmueller/libtsm/archive/refs/tags/v1.1.2.tar.gz',
packages=find_packages(),
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Programming Language :: Python :: 3",
],
keywords=['audio', 'music', 'tsm', 'pitch-shifting'],
license='MIT',
install_requires=['numpy >= 1.17.0',
'scipy >= 1.3.0'],
python_requires='>=3.6',
extras_require={
'dev': [ # required for running the Jupyter notebook `demo_libtsm.ipynb
'ipython >= 7.8.0',
'jupyter == 1.0.*',
'librosa >= 0.8.0',
'nbstripout == 0.4.*',
'matplotlib >= 3.1.0',
],
'test': [
'pytest == 6.2.*',
'soundfile >= 0.9.0',
],
'docs': [
'sphinx == 4.0.*',
'sphinx-rtd-theme == 0.5.*',
],
}
)