-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 706 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 706 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
from setuptools import find_packages, setup
setup(
name='ix-hapticsight-ohip',
version='0.1.0',
description='Safety-first optical-haptic interaction protocol reference implementation.',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='Bryce Lovell',
license='Apache-2.0',
python_requires='>=3.10',
package_dir={'': 'src'},
packages=find_packages(where='src'),
install_requires=['pyyaml>=6.0'],
extras_require={'dev': ['pytest>=7.0']},
keywords=[
'robotics',
'human-robot-interaction',
'haptics',
'safety',
'consent',
'protocol',
],
)