Fix missing file during install

This commit is contained in:
Dan Church 2019-07-09 14:31:05 -05:00
parent 89cb007bdf
commit 438455eb50
No known key found for this signature in database
GPG Key ID: EA2BF379CD2CDBD0
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
include AUTHORS
include CONTRIBUTING.md
include COPYING
include NEWS
include NEWS.rst
include README.rst
include conf/glances.conf
recursive-include docs *

View File

@ -32,7 +32,7 @@ with open('README.rst', encoding='utf-8') as f:
def get_data_files():
data_files = [
('share/doc/glances', ['AUTHORS', 'COPYING', 'NEWS', 'README.rst',
('share/doc/glances', ['AUTHORS', 'COPYING', 'NEWS.rst', 'README.rst',
'CONTRIBUTING.md', 'conf/glances.conf']),
('share/man/man1', ['docs/man/glances.1'])
]