Lucabr01 commited on
Commit
86293fe
·
verified ·
1 Parent(s): a25be20

Upload setup.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. setup.py +17 -0
setup.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="zero-ping",
5
+ version="1.0.0",
6
+ description="Neural speech codec with packet-loss repair (16 kHz, causal, RVQ + Transformer)",
7
+ packages=find_packages(),
8
+ python_requires=">=3.9",
9
+ install_requires=[
10
+ "torch>=2.1.0",
11
+ "torchaudio>=2.1.0",
12
+ "numpy>=1.24.0",
13
+ "vector-quantize-pytorch>=1.14.0",
14
+ "einops>=0.7.0",
15
+ "huggingface_hub>=0.20.0",
16
+ ],
17
+ )