Install man in man/man1

So it ends up in ~/.local/man instead of ~/.local/share/man when
installed with pip.
This commit is contained in:
Matteo Cypriani 2018-10-14 22:53:19 +02:00
parent 63870b25ed
commit 35b8fed792
1 changed files with 1 additions and 1 deletions

View File

@ -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'],