Modify ↓
Opened 18 years ago
Closed 18 years ago
#445 closed defect (fixed)
setup.py doesn't install macros/ module
Reported by: | James Mills | Owned by: | Noah Kantrowitz |
---|---|---|---|
Priority: | highest | Component: | HierWikiPlugin |
Severity: | blocker | Keywords: | |
Cc: | Trac Release: | 0.9 |
Description
The setup.py fails to install the macros/ module which actually contains the macros :)
Patch:
# svn diff setup.py Index: setup.py =================================================================== --- setup.py (revision 897) +++ setup.py (working copy) @@ -6,7 +6,7 @@ setup( name = 'TracHierWiki', version = '0.1', - packages = ['hierwiki'], + packages = ['hierwiki', 'hierwiki/macros'], package_data={ 'hierwiki' : [ ] }, author = "Noah Kantrowitz", author_email = "coderanger@yahoo.com",
Attachments (0)
Note: See
TracTickets for help on using
tickets.
(In [899]) * Adding macros module to bdists. (Fixes #445)