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 #!/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 @@ ...@@ -16,7 +15,7 @@
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=[
......
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