-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 744 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 744 Bytes
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
from setuptools import setup, find_packages
setup(
name="homebot",
version="0.1.0",
description="HomeBot 家用机器人控制软件",
packages=find_packages(where="software/src"),
package_dir={"": "software/src"},
install_requires=[
"pyzmq>=25.0.0",
"opencv-python>=4.8.0",
"pyserial>=3.5",
"flask>=3.0.0",
"flask-socketio>=5.3.0",
"ultralytics>=8.3.0",
"numpy>=1.24.0",
"filterpy>=1.4.5",
"paho-mqtt>=1.6.0",
"ikpy>=3.4.2",
"sherpa-onnx>=1.9.0",
"sounddevice>=0.4.6",
"openai>=1.0.0",
"fastmcp>=2.14.0",
"websockets>=12.0",
"volcengine-python-sdk",
],
include_package_data=True,
)