mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 15:59:03 +00:00
9fbd840231
--HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%4095
18 lines
318 B
Python
18 lines
318 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
import os.path as op
|
|
import shutil
|
|
|
|
from hsutil.build import print_and_do
|
|
|
|
os.chdir('dupeguru_pe')
|
|
print_and_do('python gen.py')
|
|
os.chdir('..')
|
|
|
|
if op.exists('build'):
|
|
shutil.rmtree('build')
|
|
if op.exists('dist'):
|
|
shutil.rmtree('dist')
|
|
|
|
print_and_do('python -u setup.py py2app') |