Skip to content

Commit

Permalink
Fix installing entry points
Browse files Browse the repository at this point in the history
Not sure why or when but the string syntax for entry points does not
seem to work correctly anymore (no scripts are installed).  Use
the explicit list-in-dict syntax instead.
  • Loading branch information
mgorny committed Feb 15, 2022
1 parent ba9408c commit cfc5e86
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions setup.py
Expand Up @@ -36,10 +36,11 @@ def read_files(files):
extras_require={
'cli': ['click>=5.0', ],
},
entry_points='''
[console_scripts]
dotenv=dotenv.cli:cli
''',
entry_points={
"console_scripts": [
"dotenv=dotenv.cli:cli",
],
},
license='BSD-3-Clause',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit cfc5e86

Please sign in to comment.