We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29b3677 commit c614655Copy full SHA for c614655
1 file changed
setup.py
@@ -0,0 +1,24 @@
1
+from setuptools import find_packages, setup
2
+
3
+setup(
4
+ name='ix-hapticsight-ohip',
5
+ version='0.1.0',
6
+ description='Safety-first optical-haptic interaction protocol reference implementation.',
7
+ long_description=open('README.md', encoding='utf-8').read(),
8
+ long_description_content_type='text/markdown',
9
+ author='Bryce Lovell',
10
+ license='Apache-2.0',
11
+ python_requires='>=3.10',
12
+ package_dir={'': 'src'},
13
+ packages=find_packages(where='src'),
14
+ install_requires=['pyyaml>=6.0'],
15
+ extras_require={'dev': ['pytest>=7.0']},
16
+ keywords=[
17
+ 'robotics',
18
+ 'human-robot-interaction',
19
+ 'haptics',
20
+ 'safety',
21
+ 'consent',
22
+ 'protocol',
23
+ ],
24
+)
0 commit comments