Modify ↓
Opened 17 years ago
Closed 17 years ago
#2603 closed defect (fixed)
wrong setup.py configuration
Reported by: | maja | Owned by: | Radek Bartoň |
---|---|---|---|
Priority: | normal | Component: | DoxygenPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
I checkout revision 3249 for doxygen plugin sources from http://trac-hacks.org/svn/doxygenplugin/0.11/.
It builds up an .egg file missing the directory "templates" and thus it was not working properly.
I solved the problem changing line 49 of setup.py from
package_data={'doxygentrac': ['templates/*.cs', 'htdocs/css/*.css']}
to
package_data={'doxygentrac': ['templates/*.html', 'htdocs/css/*.css']}
Attachments (0)
Note: See
TracTickets for help on using
tickets.
Fixed, thanks for reporting.