# .easiboxrc file for easibox itself

TESTING = 0

if TESTING:
   archiveDestination = "~/box/" # testing
   boxFormats = ['tar', 'tar.bz2', 'tgz', 'tar.gz', 'zip']
else:   
   archiveDestination = "~/proj/v/" # production
   boxFormats = ['tgz', 'zip']

include("*")
include("test/*.py") #regression tests
include(".easiboxrc")
exclude("*.pyc")
exclude("*~")
exclude("~*")

if not TESTING:
   # write <HISTORY> and box files to web-image directory:
   for box in getBoxFilenames():
      postrun("cp %s ~/proj/www_ca/oss/easibox/" % box)
   postrun("cp HISTORY ~/proj/www_ca/oss/easibox/") 


#end
