care for floats being passed as a result of erratic / instead of // when migrating...
[plnode-utils.git] / setup.py
index a4eb86d..89d77fb 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -5,12 +5,11 @@ from glob import glob
 import shutil
 from distutils.core import setup
 
-scripts = [ "bwlimit" ] 
+scripts = [ "bin/bwlimit" ] 
 
 # xxx fixme
 # for now we only have bwlimit.py and its flavour is selected in the main specfile
 # that copies the right bwlimit_xxx.py into bwlimit.py
 setup(name='plnode',
-      package_dir={'plnode':'.'},
-      py_modules = [ 'bwlimit' ] ,
+      py_modules = [ 'plnode.bwlimit', 'bwlimit' ] ,
       scripts = scripts)