-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (49 loc) · 1.52 KB
/
setup.py
File metadata and controls
53 lines (49 loc) · 1.52 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
"""
Setup script for agent_ros_bridge package.
This is used by ROS2 colcon build system.
"""
from setuptools import find_packages, setup
package_name = "agent_ros_bridge"
setup(
name=package_name,
version="0.6.1",
packages=find_packages(),
data_files=[
("share/ament_index/resource_index/packages", ["resource/" + package_name]),
("share/" + package_name, ["package.xml"]),
(
"share/" + package_name + "/launch",
[
"launch/intent_parser.launch.py",
"launch/context_manager.launch.py",
"launch/ai_layer.launch.py",
],
),
],
install_requires=[
"setuptools",
"pydantic>=2.0.0",
"pyyaml>=6.0",
"websockets>=11.0",
"cryptography>=41.0.0",
"aiohttp>=3.8.0",
"aiosqlite>=0.19.0",
"redis>=4.5.0",
],
zip_safe=True,
maintainer="Agent ROS Bridge Contributors",
maintainer_email="maintainer@agent-ros-bridge.org",
description="Universal interface for AI agents to control ROS robots via natural language",
license="MIT",
tests_require=["pytest"],
entry_points={
"console_scripts": [
# Main CLI
"agent-ros-bridge = agent_ros_bridge.cli:main",
"arb = agent_ros_bridge.cli:main",
# AI Layer Nodes (Week 2)
"intent_parser = agent_ros_bridge.ai.intent_parser:main",
"context_manager = agent_ros_bridge.ai.context_manager:main",
],
},
)