mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 07:49:02 +00:00
12 lines
171 B
Python
12 lines
171 B
Python
|
#!/usr/bin/env python
|
||
|
from setuptools import setup
|
||
|
|
||
|
from hs.build import set_buildenv
|
||
|
|
||
|
set_buildenv()
|
||
|
|
||
|
setup(
|
||
|
plugin=['dg_cocoa.py'],
|
||
|
setup_requires=['py2app'],
|
||
|
)
|