Changeset 989
- Timestamp:
- 07/02/06 13:23:43 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
accountmanagerplugin/sandbox/modular/setup.py
r972 r989 8 8 author = 'Matthew Good', 9 9 author_email = 'trac@matt-good.net', 10 url = 'http://trac-hacks. swapoff.org/wiki/AccountManagerPlugin',10 url = 'http://trac-hacks.org/wiki/AccountManagerPlugin', 11 11 description = 'User account management plugin for Trac', 12 12 … … 18 18 19 19 zip_safe=True, 20 packages=['acct_mgr'], 21 package_data={'acct_mgr': ['templates/*.cs']}) 20 packages=['acct_mgr', 'acct_mgr/stores'], 21 package_data={'acct_mgr': ['templates/*.cs']}, 22 23 entry_points = { 24 'trac.plugins': [ 25 'acct_mgr.api = acct_mgt.api', 26 'acct_mgr.web_ui = acct_mgr.web_ui', 27 'acct_mgr.stores = acct_mgr.stores', 28 ], 29 }, 30 ) 22 31
