blob: f2f0f5735f340719ff53b7c8aed421f09464d7a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
"""
This is a setup.py script generated by py2applet
Usage:
python setup.py py2app
"""
#from setuptools import setup
from distutils.core import setup
import py2exe
APP = [{'script': 'main.py', 'icon_resources': [(0, '../../packaging/Win32/NE1.ico')]}]
DATA_FILES = []
OPTIONS = {'argv_emulation': True}
setup(
windows=APP
#app=APP,
#name='NanoEngineer-1',
#data_files=DATA_FILES,
#options={'py2app': OPTIONS},
#setup_requires=['py2app'],
)
|