aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: f00e93471c13c53fb8fbd6bd5f2a043ef245a70c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python

from setuptools import setup
from codecs import open
from os import path

setup(
    name="Rumba",
    version="0.4",
    url="https://gitlab.com/arcfire/rumba",
    keywords="rina measurement testbed",
    author="Sander Vrijders",
    author_email="sander.vrijders@intec.ugent.be",
    license="LGPL",
    description="Rumba measurement framework for RINA",
    packages=["rumba", "rumba.testbeds", "rumba.prototypes"],
    install_requires=["paramiko", "wheel", "wget"],
    scripts = ['tools/rumba-access']
)