24
25
fout = file(fin.name + '.new', 'w')
27
fields = line.split(' = ') # Separate variable from value
28
fields = line.split(' = ') # Separate variable from value
28
29
if fields[0] in values:
29
30
oldvalues[fields[0]] = fields[1].strip()
30
31
line = "%s = %s\n" % (fields[0], values[fields[0]])
68
69
DistUtilsExtra.auto.install_auto.run(self)
69
70
update_config(previous_values)
73
##################################################################################
74
###################### YOU SHOULD MODIFY ONLY WHAT IS BELOW ######################
75
##################################################################################
72
##############################################################################
73
###################### YOU SHOULD MODIFY ONLY WHAT IS BELOW ##################
74
##############################################################################
77
76
DistUtilsExtra.auto.setup(
82
#author_email='email@ubuntu.com',
83
#description='UI for managing …',
84
#long_description='Here a longer description',
85
#url='https://launchpad.net/qreator',
80
author='David Planella',
81
author_email='david.planella@ubuntu.com',
82
description='Create your own QR codes',
83
long_description="Qreator will enable to to easily create your " +
84
"own QR codes to encode different types of information" +
85
" in an efficient, compact and cool way.",
86
url='https://launchpad.net/qreator',
86
87
cmdclass={'install': InstallAndUpdateDataDirectory}