Skip to content
Snippets Groups Projects
Commit e8238d18 authored by Bob Lantz's avatar Bob Lantz
Browse files

Use Mininet version number from mininet.net

Contributing toward issue #46.
parent 54c51c02
No related branches found
No related tags found
No related merge requests found
......@@ -5,13 +5,18 @@
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' ] ]
modname = distname = 'mininet'
setup(
name=distname,
version='2.0.0d2',
version=VERSION,
description='Process-based OpenFlow emulator',
author='Bob Lantz',
author_email='rlantz@cs.stanford.edu',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment