X-Git-Url: https://git.armaanb.net/?a=blobdiff_plain;f=setup.py;h=0f606325d7a430b8c6f4007e47a4b05c4347f70e;hb=1a5fa0cc2280ad40bc170fae389fe85f5aa74b52;hp=20d9b979748abc06a192c2550b11323e4ef3ae3e;hpb=b8e34d095fcc49e62a4724c8859512eab0d740f6;p=lightcards.git diff --git a/setup.py b/setup.py index 20d9b97..0f60632 100644 --- a/setup.py +++ b/setup.py @@ -18,12 +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=[ - "Development Status :: 4 - Beta", - "Intended Audience :: Other Audience", + "Intended Audience :: Education", "Environment :: Console :: Curses", "License :: OSI Approved :: MIT License", - "Topic :: Utilities" + "Topic :: Education", ], )