Zero-Ping / setup.py
Lucabr01's picture
Upload setup.py with huggingface_hub
86293fe verified
raw
history blame contribute delete
466 Bytes
from setuptools import setup, find_packages
setup(
name="zero-ping",
version="1.0.0",
description="Neural speech codec with packet-loss repair (16 kHz, causal, RVQ + Transformer)",
packages=find_packages(),
python_requires=">=3.9",
install_requires=[
"torch>=2.1.0",
"torchaudio>=2.1.0",
"numpy>=1.24.0",
"vector-quantize-pytorch>=1.14.0",
"einops>=0.7.0",
"huggingface_hub>=0.20.0",
],
)