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

Minor cleanup; got rid of backslash.

parent 406f5da1
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
'''Setuptools params'''
"Setuptools params"
from setuptools import setup, find_packages
from os.path import join
scripts = [join('bin', filename) for filename in
['mn']]
scripts = [ join( 'bin', filename ) for filename in [ 'mn' ] ]
modname = distname = 'mininet'
......@@ -16,7 +15,7 @@
author='Bob Lantz',
author_email='rlantz@cs.stanford.edu',
packages=find_packages(exclude='test'),
long_description="""\
long_description="""
Insert longer description here.
""",
classifiers=[
......
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