-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 764 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (25 loc) · 764 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
from setuptools import find_packages, setup
setup(
name="ix-hapticsight-ohip",
version="0.2.0",
description="Safety-first perception-to-contact authority for bounded robot and XR interaction.",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Bryce Lovell",
license="MIT",
python_requires=">=3.10",
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=["pyyaml>=6.0", "pillow>=10.0"],
extras_require={"dev": ["pytest>=7.0"]},
keywords=[
"robotics",
"computer-vision",
"human-robot-interaction",
"haptics",
"safety",
"ros2",
"webxr",
"protocol",
],
)