X-Git-Url: https://git.armaanb.net/?a=blobdiff_plain;f=setup.py;h=0f606325d7a430b8c6f4007e47a4b05c4347f70e;hb=b9185b09edd2677f3a63cef4fd4be3e79671dc5c;hp=66c1db9379a43dd0ad82c7b56fc559d08e7a5fbe;hpb=34c307c1dc3510c4a27eefc21152d2df9e309f0f;p=lightcards.git diff --git a/setup.py b/setup.py index 66c1db9..0f60632 100644 --- a/setup.py +++ b/setup.py @@ -18,11 +18,13 @@ setup( packages=["lightcards"], install_requires=["beautifulsoup4", "markdown"], data_files=[("man/man1", ["man/lightcards.1"])], - scripts=['bin/lightcards'], + entry_points={ + "console_scripts": ["lightcards=lightcards:main"], + }, classifiers=[ "Intended Audience :: Education", "Environment :: Console :: Curses", "License :: OSI Approved :: MIT License", - "Topic :: Education" + "Topic :: Education", ], )