aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: d60a7d4c3050e8f9f3b079ed79bad5986090d162 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
from codecs import open
from os import path

here = path.abspath(path.dirname(__file__))

with open(path.join(here, 'README.md'), encoding='utf-8') as f:
    long_description = f.read()

setup(
    name="Rumba",
    version="0.1",
    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",
    long_description=long_description,
    packages=["rumba", "rumba.testbeds", "rumba.prototypes"],
    install_requires=["paramiko", "wheel", "wget"]
)