Skip to content

Commit

Permalink
New pip version
Browse files Browse the repository at this point in the history
  • Loading branch information
fakhirali committed May 26, 2024
1 parent 57fe969 commit a9100d1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ pip install openvoicechat

### To install base and functionality specific packages
```shell
pip install openvoicechat[piper,xtts]
pip install openvoicechat[piper,openai,transformers]
```

similarly "piper" and "xtts" can be replaced by any of the following
- piper
- vosk
- open_ai
- openai
- tortoise
- xtts
- transformers
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'opensource, highly extensible and easy to use alternative to the proprietary solutions.',
url='http://www.fakhirali.pk/OpenVoiceChat/',
name='openvoicechat',
version='0.1.4',
version='0.1.5',
packages=find_packages(),
install_requires=[
'sounddevice',
Expand All @@ -19,13 +19,14 @@
'librosa',
'pydub',
'python-dotenv',
'websockets'
'websockets',
'fastapi'
],
extras_require={
'transformers': ['transformers'],
'piper': ['piper-tts', 'piper-phonemize'],
'vosk': ['vosk'],
'open_ai': ['openai'],
'openai': ['openai'],
'tortoise': ['tortoise-tts'],
'xtts': ['TTS'],
},
Expand Down

0 comments on commit a9100d1

Please sign in to comment.