Revision 2ad03eea setup.py
setup.py | ||
---|---|---|
1 | 1 |
#!/usr/bin/env python |
2 |
'''Setuptools params'''
|
|
2 |
"Setuptools params"
|
|
3 | 3 |
|
4 | 4 |
from setuptools import setup, find_packages |
5 | 5 |
from os.path import join |
6 | 6 |
|
7 |
scripts = [join('bin', filename) for filename in |
|
8 |
['mn']] |
|
7 |
scripts = [ join( 'bin', filename ) for filename in [ 'mn' ] ] |
|
9 | 8 |
|
10 | 9 |
modname = distname = 'mininet' |
11 | 10 |
|
... | ... | |
16 | 15 |
author='Bob Lantz', |
17 | 16 |
author_email='rlantz@cs.stanford.edu', |
18 | 17 |
packages=find_packages(exclude='test'), |
19 |
long_description="""\
|
|
18 |
long_description=""" |
|
20 | 19 |
Insert longer description here. |
21 | 20 |
""", |
22 | 21 |
classifiers=[ |
Also available in: Unified diff