forked from winedarkmoon/ElevenGUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 967 Bytes
/
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
from setuptools import setup
setup(
name='LevanteAudio',
version='0.0.1',
description='A GUI application for interacting with ElevenLabs API with added speech-to-text functionality using OpenAI\'s Whisper.',
original_url='https://github.com/winedarkmoon/ElevenGUI',
author='winedarkmoon-djc',
license='MIT',
install_requires=[
'certifi==2023.5.7',
'cffi==1.15.1',
'charset-normalizer==3.1.0',
'ctktable==1.1',
'customtkinter==5.1.3',
'darkdetect==0.8.0',
'idna==3.4',
'numpy==1.24.3',
'openpyxl==3.1.5'
'pandas==2.2.3',
'Pillow==9.5.0',
'pycparser==2.21',
'python-dotenv==1.0.0',
'requests==2.31.0',
'sounddevice==0.4.6',
'soundfile==0.12.1',
'ttkwidgets==0.13.0',
'urllib3==2.0.2',
],
extras_require={
'whisper_api': ['openai'],
'whisper_local': ['whisper'],
},
)