Using latest version of mininet

refs: #2851

Change-Id: Ica4936cb98245a0b1a22d8ceada4e7a0f6dbddc8
diff --git a/setup.py b/setup.py
index 19bfd83..ec8f76a 100644
--- a/setup.py
+++ b/setup.py
@@ -1,46 +1,9 @@
 #!/usr/bin/env python
 
-"Setuptools params"
-
 from setuptools import setup, find_packages
-from os.path import join
-
-# Get version number from source tree
-import sys
-sys.path.append( '.' )
-from mininet.net import VERSION
-
-scripts = [ join( 'bin', filename ) for filename in [ 'mn', 'minindn', 'minindnedit' ] ]
-
-modname = distname = 'mininet'
 
 setup(
-    name=distname,
-    version=VERSION,
-    description='Process-based OpenFlow emulator with NDN extension',
-    author='Bob Lantz, Carlos Cabral',
-    author_email='rlantz@cs.stanford.edu, cabral@dca.fee.unicamp.br',
-    packages=find_packages(exclude='test'),
-    long_description="""
-        Mininet is a network emulator which uses lightweight
-        virtualization to create virtual networks for rapid
-        prototyping of Software-Defined Network (SDN) designs
-        using OpenFlow. http://openflow.org/mininet.
-        This also includes an extension for using Content Centric
-        Networks based on the Named Data Networking (NDN) model.
-        """,
-    classifiers=[
-          "License :: OSI Approved :: BSD License",
-          "Programming Language :: Python",
-          "Development Status :: 2 - Pre-Alpha",
-          "Intended Audience :: Developers",
-          "Topic :: Internet",
-    ],
-    keywords='networking emulator protocol Internet OpenFlow SDN NDN NFD NLSR',
-    license='BSD',
-    install_requires=[
-        'setuptools',
-        'networkx'
-    ],
-    scripts=scripts,
+    name = "Mini-NDN",
+    packages = find_packages(),
+    scripts = ['bin/minindn', 'bin/minindnedit'],
 )