]> git.armaanb.net Git - lightcards.git/blobdiff - setup.py
Implement progress_char config option
[lightcards.git] / setup.py
index 0f606325d7a430b8c6f4007e47a4b05c4347f70e..2373f3f82dcdcdbb2cc99b0f16cf33a22a1848b3 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ with open(path.join(pwd, "README.md"), encoding="utf-8") as f:
 
 setup(
     name="lightcards",
-    version="0.6.0",
+    version="0.7.0",
     description="Terminal flashcards from Markdown",
     long_description=long_description,
     long_description_content_type="text/markdown",
@@ -17,7 +17,18 @@ setup(
     license="MIT",
     packages=["lightcards"],
     install_requires=["beautifulsoup4", "markdown"],
-    data_files=[("man/man1", ["man/lightcards.1"])],
+    data_files=[
+        ("man/man1", ["man/lightcards.1"]),
+        (
+            "share/doc/lightcards/",
+            [
+                "./config.py",
+                "./README.md",
+                "man/lightcards.1.md",
+                "./LICENSE",
+            ],
+        ),
+    ],
     entry_points={
         "console_scripts": ["lightcards=lightcards:main"],
     },