-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathsetup.py
28 lines (24 loc) · 844 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
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.23',
author='Max Morrison',
author_email='[email protected]',
url='https://github.com/maxrmorrison/torchcrepe',
install_requires=[
'librosa>=0.9.1',
'resampy',
'scipy',
'torch',
'torchaudio',
'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')