X-Git-Url: https://git.armaanb.net/?a=blobdiff_plain;f=setup.py;h=0f606325d7a430b8c6f4007e47a4b05c4347f70e;hb=b9185b09edd2677f3a63cef4fd4be3e79671dc5c;hp=830e579dbd87bcacf9e82dfe02326f58d9b1bf14;hpb=ae89ff9e73baee789bcfa1c914da8e29feb2dc04;p=lightcards.git diff --git a/setup.py b/setup.py index 830e579..0f60632 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open(path.join(pwd, "README.md"), encoding="utf-8") as f: setup( name="lightcards", - version="0.4.0", + version="0.6.0", description="Terminal flashcards from Markdown", long_description=long_description, long_description_content_type="text/markdown", @@ -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", ], )