forked from maxrmorrison/torchcrepe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (18 loc) · 775 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
from setuptools import setup
with open('README.md', encoding='utf8') as file:
long_description = file.read()
setup(
name='torchcrepe',
description='Pytorch implementation of CREPE pitch tracker',
version='0.0.19',
author='Max Morrison',
author_email='[email protected]',
url='https://github.com/maxrmorrison/torchcrepe',
install_requires=['librosa==0.9.1', 'resampy', 'scipy', 'torch', 'tqdm'],
packages=['torchcrepe'],
package_data={'torchcrepe': ['assets/*']},
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['pitch', 'audio', 'speech', 'music', 'pytorch', 'crepe'],
classifiers=['License :: OSI Approved :: MIT License'],
license='MIT')