in lib/generator.js [267:277]
visitModuleInit() {
const initFile = path.join(this.outputDir, this.config.package, '__init__.py');
if(!fs.existsSync(initFile)) {
if(!fs.existsSync(path.dirname(initFile))) {
fs.mkdirSync(path.dirname(initFile), {
recursive: true
});
}
fs.writeFileSync(initFile, '__version__ = "1.0.0"\n');
}
}