Minor cleanup; got rid of backslash.
This commit is contained in:
@@ -1,11 +1,10 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
'''Setuptools params'''
|
"Setuptools params"
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
from os.path import join
|
from os.path import join
|
||||||
|
|
||||||
scripts = [join('bin', filename) for filename in
|
scripts = [ join( 'bin', filename ) for filename in [ 'mn' ] ]
|
||||||
['mn']]
|
|
||||||
|
|
||||||
modname = distname = 'mininet'
|
modname = distname = 'mininet'
|
||||||
|
|
||||||
@@ -16,7 +15,7 @@ setup(
|
|||||||
author='Bob Lantz',
|
author='Bob Lantz',
|
||||||
author_email='rlantz@cs.stanford.edu',
|
author_email='rlantz@cs.stanford.edu',
|
||||||
packages=find_packages(exclude='test'),
|
packages=find_packages(exclude='test'),
|
||||||
long_description="""\
|
long_description="""
|
||||||
Insert longer description here.
|
Insert longer description here.
|
||||||
""",
|
""",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
|||||||
Reference in New Issue
Block a user