60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
|
'gluon/contrib/pymysql',
'gluon/contrib/pyrtf',
'gluon/contrib/pysimplesoap',
'gluon/contrib/simplejson',
'gluon/tests',
],
package_data = {'gluon':['env.tar']},
scripts = ['mkweb2pyenv','runweb2py'],
scripts = ['w2p_apps','w2p_run','w2p_clone'],
)
if __name__ == '__main__':
print "web2py does not require installation and"
print "you should just start it with:"
print
print "$ python web2py.py"
print
print "are you sure you want to install it anyway (y/n)?"
s = raw_input('>')
if s.lower()[:1]=='y':
start()
#print "web2py does not require installation and"
#print "you should just start it with:"
#print
#print "$ python web2py.py"
#print
#print "are you sure you want to install it anyway (y/n)?"
#s = raw_input('>')
#if s.lower()[:1]=='y':
start()
|