X-Git-Url: https://git.armaanb.net/?a=blobdiff_plain;f=setup.py;h=941503538fc4ef1c71c132c019305e2f11222ce2;hb=b663abd549167725daeb51249419500bbf8c41f0;hp=1925b4836d0ccba75789db1d547fdd181d7052fe;hpb=da96a7013d0b501fd84d5c125533b672ccf3d671;p=lightcards.git diff --git a/setup.py b/setup.py index 1925b48..9415035 100644 --- a/setup.py +++ b/setup.py @@ -1,15 +1,24 @@ 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.1.0", - description="Markdown flashcards", + version="0.5.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"])], + scripts=['bin/lightcards'], classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Other Audience", @@ -18,4 +27,3 @@ setup( "Topic :: Utilities" ], ) -