-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 816 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 816 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
setuptools.setup(
name="hros",
version="0.04",
author="Acutronic Robotics",
author_email="contact@acutronicrobitcs.com",
description="H-ROS command line utility",
long_description='''
This tool will help you to communicate and configure the H-ROS SoM. Each H-ROS SoM will integrate an API interface to customize some critical aspects, such as security or ros_domain_id.
''',
url="https://github.com/acutronicrobitcs/h-ros-cli",
entry_points = {
'console_scripts': ['hros=hros.__main__:main'],
},
install_requires=[
'nmap',
'netifaces'
],
license='GPLv3',
keywords=['H-ROS', 'modular', 'ros2', 'robot operating system'],
packages=setuptools.find_packages(),
)