Record _Dosage_configdata.py[co] during install. Closes: #47
This commit is contained in:
parent
67c2203e7e
commit
752fdb2b18
1 changed files with 4 additions and 1 deletions
5
setup.py
5
setup.py
|
@ -188,7 +188,10 @@ class MyInstallLib (install_lib, object):
|
|||
def get_outputs (self):
|
||||
"""Add the generated config file to the list of outputs."""
|
||||
outs = super(MyInstallLib, self).get_outputs()
|
||||
outs.append(self.get_conf_output())
|
||||
conf_output = self.get_conf_output()
|
||||
outs.append(conf_output)
|
||||
if self.compile:
|
||||
outs.extend(self._bytecode_filenames([conf_output]))
|
||||
return outs
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue