Add CLI tool

This commit is contained in:
mrfakename
2024-02-27 00:49:07 +00:00
parent d0fd6417c3
commit f0b03eaa9c
3 changed files with 93 additions and 6 deletions

View File

@@ -28,4 +28,10 @@ setup(
package_data={
'': ['*.txt', 'cmudict_*'],
},
entry_points={
"console_scripts": [
"melotts = melo.main:main",
"melo = melo.main:main",
],
},
)