Updating references to yans repository source-code
[nepi.git] / setup.py
1 #!/usr/bin/env python
2 # vim: set fileencoding=utf-8
3 from distutils.core import setup
4 import sys
5
6 setup(
7         name        = "nepi",
8         version     = "0.2",
9         description = "High-level abstraction for running network experiments",
10         author      = "Mathieu Lacage, Alina Quereilhac, Martín Ferrari and Claudio Freire",
11         url         = "http://nepi.pl.sophia.inria.fr/code/nepi",
12         license     = "GPLv2",
13         platforms   = "Linux",
14         packages    = [
15             "nepi",
16             "nepi.testbeds",
17             "nepi.testbeds.netns",
18             "nepi.testbeds.ns3",
19             "nepi.testbeds.planetlab",
20             "nepi.core",
21             "nepi.util.parser",
22             "nepi.util.settools",
23             "nepi.util.graphtools",
24             "nepi.util" ],
25         package_dir = {"": "src"},
26         package_data = {"nepi.testbeds.planetlab" : [
27                                 "scripts/*.py", "scripts/*.c", "scripts/*.patch", 
28                         ],
29                         "nepi.util" : ["*.tpl"] },
30     )