-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
35 lines (34 loc) · 1.16 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
author="Fakhir Ali",
author_email="[email protected]",
description="OpenVoiceChat is an opensource library that allows you to have a natural voice conversation with "
"your LLM agent.",
long_description="If you plan on making an LLM agent and want to have your users be able to talk to it like a "
"person (low latency, handles interruptions), this library is for you. It aims to be the "
"opensource, highly extensible and easy to use alternative to the proprietary solutions.",
url="https://www.finityalpha.com/OpenVoiceChat/",
name="openvoicechat",
version="0.2.4",
packages=find_packages(),
install_requires=[
"sounddevice",
"pyaudio",
"librosa",
"pydub",
"python-dotenv",
"websockets",
"fastapi",
"pandas",
"pysbd",
],
extras_require={
"transformers": ["transformers"],
"piper": ["piper-tts", "piper-phonemize"],
"vosk": ["vosk"],
"openai": ["openai"],
"tortoise": ["tortoise-tts"],
"xtts": ["TTS", "phonemizer"],
},
dependency_links=[],
)