We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6beb19 commit 4616399Copy full SHA for 4616399
1 file changed
src/pages/SetupPy/index.js
@@ -112,7 +112,7 @@ export default class SetupPy extends React.Component {
112
if (this.state.entrypoint) {
113
code.push(` entry_points={`);
114
code.push(` "console_scripts": [`);
115
- code.push(` "` + this.state.packageName + `"="` + this.state.packageName + `.__main__.main",`)
+ code.push(` "` + this.state.packageName + `=` + this.state.packageName + `.__main__.main",`)
116
code.push(` ]},`);
117
}
118
if (this.state.classifiers.length > 0) {
0 commit comments