]> git.armaanb.net Git - lightcards.git/blobdiff - setup.py
Bump version to 0.4.0
[lightcards.git] / setup.py
index 6b7eb999437f164bcfcc7c11d4093218ceda29a9..b75e9757b29085176cfd87718c3b588ca43417be 100644 (file)
--- 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.0.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",
@@ -11,11 +18,10 @@ setup(
     packages=["lightcards"],
     install_requires=["beautifulsoup4", "markdown"],
     classifiers=[
-        "Development Status :: 2 - Pre-Alpha",
+        "Development Status :: 4 - Beta",
         "Intended Audience :: Other Audience",
         "Environment :: Console :: Curses",
         "License :: OSI Approved :: MIT License",
         "Topic :: Utilities"
     ],
 )
-