Mercurial > p > roundup > code
diff setup.py @ 4844:6ba2d471d76b
setup.py now installs static files of the HTML documentation
(stylesheets, images, etc.)
| author | Thomas Arendsen Hein <thomas@intevation.de> |
|---|---|
| date | Thu, 31 Oct 2013 15:47:04 +0100 |
| parents | f61bd780892e |
| children | 1484893daeff |
line wrap: on
line diff
--- a/setup.py Thu Oct 31 12:30:28 2013 +0100 +++ b/setup.py Thu Oct 31 15:47:04 2013 +0100 @@ -98,6 +98,9 @@ # add docs data_files.append(include('share/doc/roundup/html', '*')) + data_files.append(include('share/doc/roundup/html/_images', '*')) + data_files.append(include('share/doc/roundup/html/_sources', '*')) + data_files.append(include('share/doc/roundup/html/_static', '*')) # perform the setup action from roundup import __version__
