forked from 4am-robotics/robmuxinator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 944 Bytes
/
setup.py
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
27
28
29
30
31
from setuptools import setup
setup(
name="robmuxinator",
version="0.1.4",
author="Benjamin Maidel",
author_email="[email protected]",
maintainer="Philipp Gehring",
maintainer_email="[email protected]",
description="The robmuxinator script serves as a command-line tool to manage and control tmux sessions on multiple hosts of your robot.",
long_description=open("README.md").read(),
url="https://github.com/mojin-robotics/robmuxinator",
license="Apache 2.0",
packages=["robmuxinator"],
install_requires=[
"argcomplete",
"colorama",
"paramiko",
"pyyaml",
],
entry_points={
"console_scripts": [
"robmuxinator = robmuxinator.robmuxinator:main",
]
},
classifiers=[
"Intended Audience :: Developers",
"Environment :: Console",
"Programming Language :: Python",
],
)