File size: 531 Bytes
dfd1909
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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, find_packages

setup(
    name="FlashSRInfer",
    version="0.1",
    packages=find_packages(),
    install_requires=[
        "numpy",
        "tqdm",
        "psutil",
        "pyyaml",
        "matplotlib",
        "librosa",
        "einops",
        "soundfile",
        "scipy",
    ],
    description="Redistribution of FlashSR audio super-resolution inference "
                "(original authors: Jaekwon Im and Juhan Nam, KAIST)",
    keywords="audio super-resolution speech enhancement",
)