Skip to content

Commit 2e2747b

Browse files
authored
Merge pull request #78 from LuAPi/fix-python-dist
Fix filename in setup.py
2 parents 9b54911 + 9f4d0d5 commit 2e2747b

File tree

1 file changed

+1
-1
lines changed
  • {{cookiecutter.project_shortname}}

1 file changed

+1
-1
lines changed

{{cookiecutter.project_shortname}}/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup
44

55

6-
with open(os.path.join('{{cookiecutter.project_shortname}}', 'package.json')) as f:
6+
with open('package.json') as f:
77
package = json.load(f)
88

99
package_name = package["name"].replace(" ", "_").replace("-", "_")

0 commit comments

Comments
 (0)