mirror of
https://github.com/oDinZu/callirhoe.git
synced 2025-02-23 00:02:16 -05:00
git-svn-id: https://callirhoe.googlecode.com/svn/branches/phantome@180 81c8bb96-aa45-f2e2-0eef-c4fa4a15c6df
16 lines
415 B
Python
Executable File
16 lines
415 B
Python
Executable File
#!/usr/bin/env python2
|
|
import glob
|
|
|
|
lang = glob.glob('lang/*.py')
|
|
style = glob.glob('style/*.py')
|
|
layouts = glob.glob('layouts/*.py')
|
|
geom = glob.glob('geom/*.py')
|
|
|
|
out = open('resources.py', 'w')
|
|
out.write('resource_list = { ')
|
|
out.write('"lang" : ' + str(lang) + ', ')
|
|
out.write('"style" : ' + str(style)+ ', ')
|
|
out.write('"layouts" : ' + str(layouts) + ', ')
|
|
out.write('"geom" :' + str(geom) + ' }')
|
|
out.close()
|