We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d17f1e0 commit cbd415bCopy full SHA for cbd415b
src/pages/SetupPy/index.js
@@ -113,8 +113,9 @@ export default class SetupPy extends React.Component {
113
if (this.state.entrypoint) {
114
code.push(` entry_points={`);
115
code.push(` "console_scripts": [`);
116
- code.push(` "` + this.state.packageName + `=` + this.state.packageName + `.__main__.main",`)
117
- code.push(` ]},`);
+ code.push(` "` + this.state.packageName + `=` + this.state.packageName + `.__main__:main",`)
+ code.push(` ]`);
118
+ code.push(` },`);
119
}
120
if (this.state.classifiers.length > 0) {
121
code.push(` classifiers=[`);
0 commit comments