care for floats being passed as a result of erratic / instead of // when migrating...
[plnode-utils.git] / setup.py
1 #!/usr/bin/python
2
3 import sys, os, os.path
4 from glob import glob
5 import shutil
6 from distutils.core import setup
7
8 scripts = [ "bin/bwlimit" ] 
9
10 # xxx fixme
11 # for now we only have bwlimit.py and its flavour is selected in the main specfile
12 # that copies the right bwlimit_xxx.py into bwlimit.py
13 setup(name='plnode',
14       py_modules = [ 'plnode.bwlimit', 'bwlimit' ] ,
15       scripts = scripts)