-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 708 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
with open('README.md') as file:
long_description = file.read()
setup(
name='psola',
description='Time-domain pitch-synchronous overlap-add',
version='0.0.1',
author='Max Morrison',
author_email='maxrmorrison@gmail.com',
url='https://github.com/maxrmorrison/psola',
install_requires=['numpy',
'pypar',
'soundfile',
'tqdm',
'praat-parselmouth'],
packages=['psola'],
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['audio', 'duration', 'pitch', 'speech', 'stretch', 'vocode'],
license='GPLv3')