mirror of
https://github.com/blw1138/Zordon.git
synced 2025-12-17 16:58:12 +00:00
* Misc fixes * Misc cleanup * Add all_versions to blender_downloader.py * More cleanup * Fix issue with status not reporting engine info * Misc fixes * Misc cleanup * Add all_versions to blender_downloader.py * More cleanup * Fix issue with status not reporting engine info
23 lines
406 B
Python
23 lines
406 B
Python
"""
|
|
This is a setup.py script generated by py2applet
|
|
|
|
Usage:
|
|
python setup.py py2app
|
|
"""
|
|
import glob
|
|
|
|
from setuptools import setup
|
|
|
|
APP = ['main.py']
|
|
DATA_FILES = [('config', glob.glob('config/*.*')),
|
|
('resources', glob.glob('resources/*.*'))]
|
|
OPTIONS = {}
|
|
|
|
setup(
|
|
app=APP,
|
|
data_files=DATA_FILES,
|
|
options={'py2app': OPTIONS},
|
|
setup_requires=['py2app'],
|
|
name='Zordon'
|
|
)
|