aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorvmaffione <v.maffione@gmail.com>2017-02-09 14:50:53 +0000
committervmaffione <v.maffione@gmail.com>2017-02-09 14:50:53 +0000
commitddba01f87c57cf8096205783eaada858213b5410 (patch)
treed48bab60bf92a223222e6af62a0748da376981e0 /setup.py
parent22b3218c951ebfc0bd2b2bdb89adb59b8a3e5ee7 (diff)
parentfd37777d333c991c094aa128ae5f30d9fa80a9d6 (diff)
downloadrumba-ddba01f87c57cf8096205783eaada858213b5410.tar.gz
rumba-ddba01f87c57cf8096205783eaada858213b5410.zip
Merge branch 'master-sander' into 'master'
rumba time See merge request !7
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..4b8afae
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,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'), 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"]
+)