Skip to content

Commit 121296a

Browse files
committed
setup.py now installs static files of the HTML documentation
(stylesheets, images, etc.)
1 parent 6b1d697 commit 121296a

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ Fixed:
3434
(Thomas Arendsen Hein)
3535
- Allow using plain() on unsaved dates in HTML forms
3636
(Thomas Arendsen Hein)
37+
- setup.py now installs static files of the HTML documentation (stylesheets,
38+
images, etc.) (Thomas Arendsen Hein)
39+
3740

3841
2013-07-06: 1.5.0
3942

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,9 @@ def main():
9898

9999
# add docs
100100
data_files.append(include('share/doc/roundup/html', '*'))
101+
data_files.append(include('share/doc/roundup/html/_images', '*'))
102+
data_files.append(include('share/doc/roundup/html/_sources', '*'))
103+
data_files.append(include('share/doc/roundup/html/_static', '*'))
101104

102105
# perform the setup action
103106
from roundup import __version__

0 commit comments

Comments
 (0)