Add initial implementation of cobot CLI and setup scripts
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="lightweight-cobot",
|
||||
version="0.1.0",
|
||||
description="Lightweight Cobot — KUKA iiwa7 ROS2 Control Framework",
|
||||
packages=find_packages(),
|
||||
python_requires=">=3.11",
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"cobot=cobot.cli:main",
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user