96 """<b>setup.py Wizard (deprecated)</b>""" |
96 """<b>setup.py Wizard (deprecated)</b>""" |
97 """<p>This wizard opens a dialog for entering all the parameters""" |
97 """<p>This wizard opens a dialog for entering all the parameters""" |
98 """ needed to create the basic contents of a setup.py file. The""" |
98 """ needed to create the basic contents of a setup.py file. The""" |
99 """ generated code is inserted at the current cursor position.""" |
99 """ generated code is inserted at the current cursor position.""" |
100 """</p><p><b>Note:</b> The use of setup.py is deprecated. Use""" |
100 """</p><p><b>Note:</b> The use of setup.py is deprecated. Use""" |
101 """ <b>pyproject.toml</b> instead.""" |
101 """ <b>pyproject.toml</b> instead.</p>""" |
102 ) |
102 ) |
103 ) |
103 ) |
104 act.triggered.connect(functools.partial(self.__handle, "setup.py")) |
104 act.triggered.connect(functools.partial(self.__handle, "setup.py")) |
105 self.__actions.append(act) |
105 self.__actions.append(act) |
106 |
106 |
120 """<b>setup.cfg Wizard (deprecated)</b>""" |
120 """<b>setup.cfg Wizard (deprecated)</b>""" |
121 """<p>This wizard opens a dialog for entering all the parameters""" |
121 """<p>This wizard opens a dialog for entering all the parameters""" |
122 """ needed to create the basic contents of a setup.cfg file. The""" |
122 """ needed to create the basic contents of a setup.cfg file. The""" |
123 """ generated code is inserted at the current cursor position.""" |
123 """ generated code is inserted at the current cursor position.""" |
124 """</p><p><b>Note:</b> The use of setup.cfg is deprecated. Use""" |
124 """</p><p><b>Note:</b> The use of setup.cfg is deprecated. Use""" |
125 """ <b>pyproject.toml</b> instead.""" |
125 """ <b>pyproject.toml</b> instead.</p>""" |
126 ) |
126 ) |
127 ) |
127 ) |
128 act.triggered.connect(functools.partial(self.__handle, "setup.cfg")) |
128 act.triggered.connect(functools.partial(self.__handle, "setup.cfg")) |
129 self.__actions.append(act) |
129 self.__actions.append(act) |
130 |
130 |