Fix the doc path

“html” and “source” were inverted
This commit is contained in:
mathieui 2015-02-10 21:18:09 +01:00
parent 14b58c528e
commit ca21aa7bb0
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3

View file

@ -99,8 +99,8 @@ setup(name="poezio",
entry_points={'console_scripts': ['poezio = poezio:main']},
data_files=([('share/man/man1/', ['data/poezio.1']),
('share/poezio/', ['README.rst', 'COPYING', 'CHANGELOG'])]
+ find_doc('share/doc/poezio/html', 'source')
+ find_doc('share/doc/poezio/source', 'build/html')),
+ find_doc('share/doc/poezio/source', 'source')
+ find_doc('share/doc/poezio/html', 'build/html')),
install_requires=['slixmpp', 'aiodns'],
extras_require={'OTR plugin': 'python-potr>=1.0',
'Screen autoaway plugin': 'pyinotify==0.9.4'})