moved some files around to conform to python best practicies

--HG--
rename : lib/baker.py => lib/baker/__init__.py
rename : lib/tools.py => lib/baker/tools.py
rename : lib/grid.py => lib/grid/__init__.py
rename : lib/smcqdelaunay.py => lib/grid/smcqdelaunay.py
This commit is contained in:
smcquay@cfdviz2
2010-03-08 13:05:42 -07:00
parent 9a1b8d14b2
commit c5d8fff883
6 changed files with 15 additions and 11 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ from optparse import OptionParser
import numpy as np
from tools import rms, exact_func
from baker.tools import rms, exact_func
import grid
+3 -4
View File
@@ -3,10 +3,9 @@
import sys
import pickle
from grid import simple_rect_grid, simple_random_grid
from baker import run_baker
from tools import smberror
from grid import simple_rect_grid, simple_random_grid
from baker import run_baker
from baker.tools import smberror
qfile = '/tmp/grid_regular.txt'