]> git.armaanb.net Git - lightcards.git/blobdiff - setup.py
Change PyPI classifiers
[lightcards.git] / setup.py
index 2e9f881b57c26bda7e51d07079dd945dcec9fbac..66c1db9379a43dd0ad82c7b56fc559d08e7a5fbe 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,21 +1,28 @@
 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.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"])],
+    scripts=['bin/lightcards'],
     classifiers=[
-        "Development Status :: 4 - Beta",
-        "Intended Audience :: Other Audience",
+        "Intended Audience :: Education",
         "Environment :: Console :: Curses",
         "License :: OSI Approved :: MIT License",
-        "Topic :: Utilities"
+        "Topic :: Education"
     ],
 )
-