]> git.armaanb.net Git - lightcards.git/blobdiff - setup.py
Add preliminary config file support
[lightcards.git] / setup.py
index dfd549b3961e2ca4356826311b1449480d0ee3de..2373f3f82dcdcdbb2cc99b0f16cf33a22a1848b3 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -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"],
     },