X-Git-Url: https://git.armaanb.net/?a=blobdiff_plain;f=setup.py;h=b75e9757b29085176cfd87718c3b588ca43417be;hb=687fb8dc4e088723e7935d3030e5d38b9b294776;hp=2e9f881b57c26bda7e51d07079dd945dcec9fbac;hpb=a965744d4d562b5c0235fd9d5baacb2ef7aa27c2;p=lightcards.git diff --git a/setup.py b/setup.py index 2e9f881..b75e975 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,16 @@ 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.2.0", - description="Markdown flashcards", + version="0.4.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", @@ -18,4 +25,3 @@ setup( "Topic :: Utilities" ], ) -