Renamed cmd_line so python3 -m osxphotos will work

This commit is contained in:
Rhet Turnbull
2019-12-21 08:19:32 -08:00
parent 4ac9c1a7a8
commit 190adea3fc
3 changed files with 2 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
""" version info """
__version__ = "0.16.01"
__version__ = "0.16.02"

View File

@@ -62,5 +62,5 @@ setup(
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=["pyobjc", "Click", "pyyaml"],
entry_points={"console_scripts": ["osxphotos=osxphotos.cmd_line:cli"]},
entry_points={"console_scripts": ["osxphotos=osxphotos.__main__:cli"]},
)