From 35b8fed792536acfb4248b313fd7fde747637c91 Mon Sep 17 00:00:00 2001 From: Matteo Cypriani Date: Sun, 14 Oct 2018 22:53:19 +0200 Subject: [PATCH] Install man in man/man1 So it ends up in ~/.local/man instead of ~/.local/share/man when installed with pip. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 68dc230..00b77a4 100644 --- a/setup.py +++ b/setup.py @@ -41,8 +41,8 @@ setuptools.setup( # 'console_scripts': ['gcp=gcp:main'], # }, data_files=[ + ('man/man1', ["gcp.1"]), ('share/locale/fr/LC_MESSAGES', ['i18n/fr/LC_MESSAGES/gcp.mo']), - ('share/man/man1', ["gcp.1"]), ('share/doc/%s' % name, ['CHANGELOG', 'LICENSE', 'README.md']), ], install_requires=['PyGObject', 'dbus-python'],