Skip to content

Commit

Permalink
Use newer way of defining scripts in setup.py (#45)
Browse files Browse the repository at this point in the history
* Use newer way of defining `scripts` in `setup.py`

* Update setup.py
  • Loading branch information
sobolevn committed Jun 8, 2023
1 parent 7a0d464 commit 4576e40
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,9 @@ def version():
'Topic :: Software Development :: Quality Assurance'],
keywords='clean, format, commented-out code',
py_modules=['eradicate'],
scripts=['eradicate'])
entry_points={
'console_scripts': [
'eradicate = eradicate:main',
],
},
)

0 comments on commit 4576e40

Please sign in to comment.