File size: 406 Bytes
b5dba8a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup

setup(
    name='bark_hubert_quantizer',
    version='0.0.4',
    packages=['bark_hubert_quantizer'],
    install_requires=[
        'audiolm-pytorch==1.1.4',
        'fairseq',
        'huggingface-hub',
        'sentencepiece',
        'transformers',
        'encodec',
        'soundfile; platform_system == "Windows"',
        'sox; platform_system != "Windows"'
    ],
)