forked from davidbrowne17/csm-streaming
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (53 loc) · 1.57 KB
/
setup.py
File metadata and controls
54 lines (53 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
setup(
name="csm_streaming",
version="0.1.0",
author="Garwil",
author_email="oliver.garwil@gmail.com",
description="A streaming AI companion with VAD, RAG, and LLM integration.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/200bg/csm-streaming",
packages=find_packages(),
include_package_data=True,
install_requires=[
"vllm==0.8.0",
"torch==2.6.0",
"torchaudio==2.6.0",
"torchvision==0.21.0",
"tokenizers==0.21.0",
"transformers==4.49.0",
"huggingface_hub==0.28.1",
"moshi==0.2.2",
"sounddevice",
"torchtune==0.4.0",
"torchao==0.9.0",
"bitsandbytes",
"peft",
"wandb",
"silero_vad",
"python-multipart>=0.0.6",
"aiofiles>=23.1.0",
"sentence-transformers>=2.2.2",
"ctransformers>=0.2.24",
"sqlalchemy>=2.0.0",
"pydantic>=2.0.0",
"fastapi>=0.95.0",
"uvicorn>=0.22.0",
"websockets>=11.0.3",
"jinja2>=3.0.0",
"speechbrain>=0.5.15",
"matplotlib",
"whisper-openai",
"silentcipher @ git+https://github.com/SesameAILabs/silentcipher@master",
"numpy==1.26.0",
"safetensors",
"typing-extensions",
],
python_requires=">=3.8",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)