X-Git-Url: https://git.armaanb.net/?a=blobdiff_plain;f=setup.py;h=0f606325d7a430b8c6f4007e47a4b05c4347f70e;hb=b9185b09edd2677f3a63cef4fd4be3e79671dc5c;hp=6b7eb999437f164bcfcc7c11d4093218ceda29a9;hpb=ecd6aa920a6287905e86e3c98cbe6bacc6e8677c;p=lightcards.git diff --git a/setup.py b/setup.py index 6b7eb99..0f60632 100644 --- a/setup.py +++ b/setup.py @@ -1,21 +1,30 @@ from setuptools import setup +from os import path + +pwd = path.abspath(path.dirname(__file__)) +with open(path.join(pwd, "README.md"), encoding="utf-8") as f: + long_description = f.read() setup( name="lightcards", - version="0.0.0", - description="Markdown flashcards", + version="0.6.0", + description="Terminal flashcards from Markdown", + long_description=long_description, + long_description_content_type="text/markdown", url="https://sr.ht/~armaan/lightcards", author="Armaan Bhojwani", author_email="me@armaanb.net", 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 :: 2 - Pre-Alpha", - "Intended Audience :: Other Audience", + "Intended Audience :: Education", "Environment :: Console :: Curses", "License :: OSI Approved :: MIT License", - "Topic :: Utilities" + "Topic :: Education", ], ) -