root/accountmanagerplugin/trunk/setup.py

Revision 3734, 1.4 kB (checked in by pacopablo, 3 months ago)

Version bump to 0.2.1

New Features:

  • Email notification of account releated events. Currently will notify a specified list of email address on account addition, accoutn deletion, and password change events. The events and recipients are configurable via the Admin interface. Notification is off by default. Closes #147
  • Property svn:executable set to *
Line 
1 #!/usr/bin/env python
2
3 # License:
4 #   "THE BEER-WARE LICENSE" (Revision 42):
5 # <trac@matt-good.net> wrote this file.  As long as you retain this notice you
6 # can do whatever you want with this stuff. If we meet some day, and you think
7 # this stuff is worth it, you can buy me a beer in return.   Matthew Good
8
9 from setuptools import setup
10
11 setup(
12     name = 'TracAccountManager',
13     version = '0.2.1',
14     author = 'Matthew Good',
15     author_email = 'trac@matt-good.net',
16     url = 'http://trac-hacks.org/wiki/AccountManagerPlugin',
17     description = 'User account management plugin for Trac',
18
19     license = 'THE BEER-WARE LICENSE',
20
21     zip_safe=True,
22     packages=['acct_mgr'],
23     package_data={'acct_mgr': ['templates/*.html',
24                                'templates/*.txt']},
25
26     install_requires = [
27         #'trac>=0.11',
28     ],
29
30     entry_points = {
31         'trac.plugins': [
32             'acct_mgr.admin = acct_mgr.admin',
33             'acct_mgr.api = acct_mgr.api',
34             'acct_mgr.db = acct_mgr.db',
35             'acct_mgr.htfile = acct_mgr.htfile',
36             'acct_mgr.http = acct_mgr.http',
37             'acct_mgr.pwhash = acct_mgr.pwhash',
38             'acct_mgr.svnserve = acct_mgr.svnserve',
39             'acct_mgr.web_ui = acct_mgr.web_ui',
40             'acct_mgr.notification = acct_mgr.notification',
41         ]
42     },
43
44     test_suite = 'acct_mgr.tests.suite',
45 )
Note: See TracBrowser for help on using the browser.