5 from setuptools import setup, find_packages
6 from os.path import join
8 # Get version number from source tree
10 sys.path.append( '.' )
11 from mininet.net import VERSION
13 scripts = [ join( 'bin', filename ) for filename in [ 'mn' ] ]
15 modname = distname = 'mininet'
20 description='Process-based OpenFlow emulator',
22 author_email='rlantz@cs.stanford.edu',
23 packages=[ 'mininet', 'mininet.examples' ],
25 Mininet is a network emulator which uses lightweight
26 virtualization to create virtual networks for rapid
27 prototyping of Software-Defined Network (SDN) designs
28 using OpenFlow. http://mininet.org
31 "License :: OSI Approved :: BSD License",
32 "Programming Language :: Python",
33 "Development Status :: 5 - Production/Stable",
34 "Intended Audience :: Developers",
35 "Topic :: System :: Emulators",
37 keywords='networking emulator protocol Internet OpenFlow SDN',