-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.17 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (35 loc) · 1.17 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
from setuptools import setup, find_packages
setup(
name="aiavatar",
version="0.8.19",
url="https://github.com/uezo/aiavatar",
author="uezo",
author_email="uezo@uezo.net",
maintainer="uezo",
maintainer_email="uezo@uezo.net",
description="🥰 Building AI-based conversational avatars lightning fast ⚡️💬",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=["examples*", "tests*"]),
package_data={"aiavatar": ["admin/static/*"]},
install_requires=[
"httpx>=0.27.0",
"openai>=1.55.3",
"aiofiles>=24.1.0",
"numpy>=2.2.3",
"silero-vad>=6.0.0",
"websockets>=13.0",
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
],
extras_require={
"local-audio": ["PyAudio>=0.2.14"],
"local": ["PyAudio>=0.2.14"],
"smart-turn": ["onnxruntime>=1.23.0", "transformers>=4.48.0", "huggingface-hub>=0.26.0"],
"namo-turn": ["onnxruntime>=1.23.0", "transformers>=4.48.0", "huggingface-hub>=0.26.0"],
},
license="Apache v2",
classifiers=[
"Programming Language :: Python :: 3"
]
)