bug fixing: addresses and routes
[nepi.git] / setup.py
index 024bca1..36a1081 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -4,9 +4,9 @@ from distutils.core import setup, Extension, Command
 
 setup(
         name        = "nepi",
-        version     = "0.1",
+        version     = "0.2",
         description = "High-level abstraction for running network experiments",
-        author      = "Alina Quereilhac, Martín Ferrari and Claudio Freire",
+        author      = "Mathieu Lacage, Alina Quereilhac, Martín Ferrari and Claudio Freire",
         url         = "http://yans.pl.sophia.inria.fr/code/hgwebdir.cgi/nepi/",
         license     = "GPLv2",
         platforms   = "Linux",
@@ -20,5 +20,6 @@ setup(
             "nepi.util.parser",
             "nepi.util" ],
         package_dir = {"": "src"},
-        package_data = {"nepi.testbeds.planetlab" : ["scripts/*.py", "scripts/*.c"] },
+        package_data = {"nepi.testbeds.planetlab" : ["scripts/*.py", "scripts/*.c"],
+                        "nepi.util" : ["*.tpl"] },
     )