-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.41 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
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="VoiceProcessingToolkit",
version="0.1.8.3",
author="Kristoffer Vatnehol",
author_email="kristoffer.vatnehol@appacia.com",
description="A comprehensive library for voice processing tasks such as wake word detection, speech recognition, "
"translation, and text-to-speech.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kristofferv98/VoiceProcessingToolkit.git",
project_urls={
"Bug Tracker": "https://github.com/kristofferv98/VoiceProcessingToolkit.git",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "."},
packages=find_packages(where="."),
include_package_data=True,
python_requires=">=3.6",
install_requires=[
"PyAudio~=0.2.14",
"openai>=1.10.0,<2.0.0",
"python-dotenv",
"requests~=2.31.0",
"elevenlabs==0.2.27",
"numpy~=1.26.2",
"pvcobra~=2.0.1",
"pvkoala~=2.0.0",
"pvporcupine~=3.0.1",
"pygame~=2.5.2",
],
package_data={
'VoiceProcessingToolkit': ['wake_word_detector/Wav_MP3/*.wav'],
},
zip_safe=False,
)