From a86cba38549283d8263a399ef7f731cf8bed023e Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Fri, 28 Apr 2017 17:44:42 +0200 Subject: rumba: Update to version 0.3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 92d0c3b..316b6da 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f: setup( name="Rumba", - version="0.1", + version="0.3", url="https://gitlab.com/arcfire/rumba", keywords="rina measurement testbed", author="Sander Vrijders", -- cgit v1.2.3 From 4dced04d238234c98a7c8221c1a7c9cfb84bf88b Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Wed, 7 Jun 2017 11:52:22 +0200 Subject: rumba: Install rumba-access on setup This will install rumba-access on setup so that it can be used anywhere. --- README.md | 5 ++--- setup.py | 3 ++- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'setup.py') diff --git a/README.md b/README.md index 7d416f6..25d79fd 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,6 @@ folder. To access a node once the experiment swapped in, use the following command (in the same terminal where ssh-agent was run in case of jFed): - $ $RUMBA/tools/rumba-access $NODE_NAME + $ rumba-access $NODE_NAME - Where $RUMBA is the location to the rumba repository and $NODE_NAME - is the name of the node to access. \ No newline at end of file + Where $NODE_NAME is the name of the node to access. \ No newline at end of file diff --git a/setup.py b/setup.py index 316b6da..85760f2 100755 --- a/setup.py +++ b/setup.py @@ -20,5 +20,6 @@ setup( description="Rumba measurement framework for RINA", long_description=long_description, packages=["rumba", "rumba.testbeds", "rumba.prototypes"], - install_requires=["paramiko", "wheel", "wget"] + install_requires=["paramiko", "wheel", "wget"], + scripts = ['tools/rumba-access'] ) -- cgit v1.2.3