Commit ddf3f455 authored by Tom Niget's avatar Tom Niget

Update README and setup.py

parent fe03f797
nemu
====
nemu3
=====
Nemu (Netwok EMUlator) is a small Python library to create emulated networks
and run and test programs in them.
......@@ -31,14 +31,10 @@ tests and then starts xterms running tcpdump so you can see the packets flowing
from one node to the other.
Nemu was started as a research project at [INRIA][] (Institut de Recheche en
Informatique et Automatique, a French research institution) and now it is
developed jointly by INRIA staff and external developers.
Nemu is now part of [Debian][]! You can just `apt-get install python-nemu` and
start using it.
Informatique et Automatique, a French research institution) and this Python 3
port was done by and is still maintained by [Nexedi][].
[network name spaces]: http://lxc.sourceforge.net/index.php/about/kernel-namespaces/network/
[Linux containers]: http://lxc.sourceforge.net/
[INRIA]: http://www.inria.fr/en/
[Debian]: http://packages.qa.debian.org/p/python-nemu.html
[Nexedi]: http://www.nexedi.com/
#!/usr/bin/env python2
#!/usr/bin/env python3
# vim: ts=4:sw=4:et:ai:sts=4
import csv, getopt, nemu, os, os.path, re, select, subprocess, sys
......
#!/usr/bin/env python2
#!/usr/bin/env python3
# vim:ts=4:sw=4:et:ai:sts=4
import os, nemu, subprocess, time
......
#!/usr/bin/env python2
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# vim: ts=4:sw=4:et:ai:sts=4
from distutils.core import setup, Extension, Command
from distutils.core import setup
setup(
name = 'nemu3',
version = '0.4',
description = 'A lightweight network emulator embedded in a small '
'python library.',
author = 'Martina Ferrari, Alina Quereilhac, Tom Niget',
author_email = 'tina@tina.pm, aquereilhac@gmail.com, tom.niget@nexedi.com',
url = 'https://github.com/zdimension/nemu3',
license = 'GPLv2',
platforms = 'Linux',
packages = ['nemu'],
install_requires = ['unshare', 'six', 'attrs'],
package_dir = {'': 'src'}
)
name='nemu3',
version='0.4',
description='A lightweight network emulator embedded in a small '
'python library.',
author='Martina Ferrari, Alina Quereilhac, Tom Niget',
author_email='tina@tina.pm, aquereilhac@gmail.com, tom.niget@nexedi.com',
url='https://lab.nexedi.com/nexedi/nemu3',
license='GPLv2',
platforms='Linux',
packages=['nemu'],
install_requires=['unshare', 'six', 'attrs'],
package_dir={'': 'src'}
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment