We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a66817 commit b05df92Copy full SHA for b05df92
garlicsim_wx/setup.py
@@ -44,8 +44,6 @@ def get_all_data_files():
44
total_data_files += data_files
45
return total_data_files
46
47
-g = get_all_data_files()
48
-
49
my_long_description = \
50
'''\
51
garlicsim_wx, a wxPython GUI for garlicsim.
@@ -78,7 +76,7 @@ def get_all_data_files():
78
76
}
79
77
],
80
'zipfile': 'lib/library.zip',
81
- 'data_files': g,
+ 'data_files': get_all_data_files(),
82
'options': {
83
'py2exe': {
84
'dist_dir': 'py2exe_dist',
@@ -87,7 +85,7 @@ def get_all_data_files():
87
85
88
86
89
90
-more_kwargs = py2exe_kwargs if `py2exe` in sys.argv else {}
+more_kwargs = py2exe_kwargs if 'py2exe' in sys.argv else {}
91
92
setuptools.setup(
93
name='garlicsim_wx',
0 commit comments