-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
22 lines (18 loc) · 833 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='torchfcpe',
description='The official Pytorch implementation of Fast Context-based Pitch Estimation (FCPE)',
version='0.0.4',
author='CNChTu',
author_email='[email protected]',
url='https://github.com/CNChTu/FCPE',
install_requires=['einops', 'local_attention', 'torch', 'torchaudio', 'numpy', 'scipy', 'librosa', 'pydub', 'pretty_midi'],
packages=['torchfcpe'],
package_data={'torchfcpe': ['assets/*']},
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['pitch', 'audio', 'speech', 'music', 'pytorch', 'fcpe'],
classifiers=['License :: OSI Approved :: MIT License'],
license='MIT')