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 5e93fa4 commit be6941cCopy full SHA for be6941c
src/pages/SetupPy/index.js
@@ -112,8 +112,8 @@ export default class SetupPy extends React.Component {
112
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",`)
+ code.push(` "console_scripts": [`);
+ code.push(` "` + this.state.packageName + `=` + this.state.packageName + `.__main__.main",`)
117
code.push(` ]},`);
118
}
119
if (this.state.classifiers.length > 0) {
0 commit comments