Relocate builder for parametric table

Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
Ian Bell
2014-12-02 21:32:06 -05:00
parent 8fc1fac00e
commit 5abf7e9afa

View File

@@ -37,8 +37,8 @@ for i in range(len(N)):
top_line = '='*N[0] + ' ' + '='*N[1] + ' ' + '='*N[2] + ' ' + '='*N[3]
header = ' '.join([h.ljust(n) for h,n in zip(headers,N)])
fp = open('parameter_table.rst.in', 'w')
fp.write('.. constructed with the build_parameter_table.py script in this folder \n\n')
fp = open('../coolprop/parameter_table.rst.in', 'w')
fp.write('.. constructed with the coolprop.parameter_table.py script in the web/scripts folder \n\n')
fp.write(top_line + '\n')
fp.write(header + '\n')
fp.write(top_line + '\n')