Skip to content

Commit c614655

Browse files
authored
Create setup.py
1 parent 29b3677 commit c614655

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

setup.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)