From c6df0cc95c98ea6a91bbc4e51fdb315aa2f49ce9 Mon Sep 17 00:00:00 2001 From: Adam Waldenberg Date: Mon, 1 Jul 2013 03:18:23 +0200 Subject: [PATCH] Setuptools now places the documentation (txt files) in the correct folder. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2262a03..be01ecc 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ setup( ], packages = find_packages(), package_data = {"": ["html/*"]}, - data_files = glob("*.txt"), + data_files = [("share/doc/gitinspector", glob("*.txt"))], entry_points = {"console_scripts": ["gitinspector = gitinspector.gitinspector:main"]}, zip_safe = True )