#!/usr/bin/env python # License: # "THE BEER-WARE LICENSE" (Revision 42): # wrote this file. As long as you retain this notice you # can do whatever you want with this stuff. If we meet some day, and you think # this stuff is worth it, you can buy me a beer in return. Matthew Good from setuptools import setup setup( name = 'TracAccountManager', version = '0.2.1', author = 'Matthew Good', author_email = 'trac@matt-good.net', url = 'http://trac-hacks.org/wiki/AccountManagerPlugin', description = 'User account management plugin for Trac', license = 'THE BEER-WARE LICENSE', zip_safe=True, packages=['acct_mgr'], package_data={'acct_mgr': ['templates/*.html', 'templates/*.txt']}, install_requires = [ #'trac>=0.11', ], entry_points = { 'trac.plugins': [ 'acct_mgr.admin = acct_mgr.admin', 'acct_mgr.api = acct_mgr.api', 'acct_mgr.db = acct_mgr.db', 'acct_mgr.htfile = acct_mgr.htfile', 'acct_mgr.http = acct_mgr.http', 'acct_mgr.pwhash = acct_mgr.pwhash', 'acct_mgr.svnserve = acct_mgr.svnserve', 'acct_mgr.web_ui = acct_mgr.web_ui', 'acct_mgr.notification = acct_mgr.notification', ] }, test_suite = 'acct_mgr.tests.suite', )