X-Git-Url: https://git.armaanb.net/?a=blobdiff_plain;f=setup.py;h=2373f3f82dcdcdbb2cc99b0f16cf33a22a1848b3;hb=03c060da9a4c865c9839bf716bcd6173973dc182;hp=ac6f77e89daa84e13dbda6b3eae7e56bbca0dab9;hpb=7e88bca5413c5f6b2ccfab32699ebc617d698ee2;p=lightcards.git diff --git a/setup.py b/setup.py index ac6f77e..2373f3f 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.7.0", description="Terminal flashcards from Markdown", long_description=long_description, long_description_content_type="text/markdown", @@ -17,11 +17,25 @@ setup( license="MIT", packages=["lightcards"], install_requires=["beautifulsoup4", "markdown"], + data_files=[ + ("man/man1", ["man/lightcards.1"]), + ( + "share/doc/lightcards/", + [ + "./config.py", + "./README.md", + "man/lightcards.1.md", + "./LICENSE", + ], + ), + ], + 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", ], )