Adding ICN PlanetLab large experiment scenarios
[nepi.git] / setup.py
index 80b9299..ece0c73 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,13 +1,14 @@
 #!/usr/bin/env python
 # vim: set fileencoding=utf-8
-from distutils.core import setup, Extension, Command
+from distutils.core import setup
+import sys
 
 setup(
         name        = "nepi",
         version     = "0.2",
         description = "High-level abstraction for running network experiments",
         author      = "Mathieu Lacage, Alina Quereilhac, Martín Ferrari and Claudio Freire",
-        url         = "http://yans.pl.sophia.inria.fr/code/hgwebdir.cgi/nepi/",
+        url         = "http://nepi.inria.fr/code/nepi",
         license     = "GPLv2",
         platforms   = "Linux",
         packages    = [
@@ -22,6 +23,8 @@ setup(
             "nepi.util.graphtools",
             "nepi.util" ],
         package_dir = {"": "src"},
-        package_data = {"nepi.testbeds.planetlab" : ["scripts/*.py", "scripts/*.c"],
+        package_data = {"nepi.testbeds.planetlab" : [
+                                "scripts/*.py", "scripts/*.c", "scripts/*.patch", 
+                        ],
                         "nepi.util" : ["*.tpl"] },
     )