1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-03-18 14:01:37 +00:00

Initial commit.

--HG--
extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%402
This commit is contained in:
hsoft
2009-06-01 09:55:11 +00:00
parent 4f197ffd5a
commit e9a97afdf8
354 changed files with 38083 additions and 0 deletions

15
se/cocoa/py/gen.py Normal file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env python
import os
import os.path as op
import shutil
print "Cleaning build and dist"
if op.exists('build'):
shutil.rmtree('build')
if op.exists('dist'):
shutil.rmtree('dist')
print "Buiding the py2app plugin"
os.system('python -u setup.py py2app')