X-Git-Url: https://git.armaanb.net/?a=blobdiff_plain;f=setup.py;h=0f606325d7a430b8c6f4007e47a4b05c4347f70e;hb=25e3ada874ea7f277129b8d2e39b675bde340afe;hp=ac6f77e89daa84e13dbda6b3eae7e56bbca0dab9;hpb=7e88bca5413c5f6b2ccfab32699ebc617d698ee2;p=lightcards.git diff --git a/setup.py b/setup.py index ac6f77e..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.3.0", + version="0.6.0", description="Terminal flashcards from Markdown", long_description=long_description, long_description_content_type="text/markdown", @@ -17,11 +17,14 @@ setup( license="MIT", packages=["lightcards"], install_requires=["beautifulsoup4", "markdown"], + data_files=[("man/man1", ["man/lightcards.1"])], + 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", ], )