root/accountmanagerplugin/0.10/setup.py

Revision 3721, 1.2 kB (checked in by pacopablo, 5 months ago)
  • Applied patch to remove unnecessary ctxt div. Thanks domluc. Closes #2918
  • Moved description of "THE BEER-WARE LICENSE" to the top of setup.py and changed the license= option t

o simply be 'THE BEER-WARE LICENSE" so that bdist_rpm will work. Closes #1953.

  • 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.1.3',
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/*.cs']},
24
25     install_requires = [
26         'TracWebAdmin',
27     ],
28
29     entry_points = {
30         'trac.plugins': [
31             'acct_mgr.web_ui = acct_mgr.web_ui',
32             'acct_mgr.htfile = acct_mgr.htfile',
33             'acct_mgr.http = acct_mgr.http',
34             'acct_mgr.api = acct_mgr.api',
35             'acct_mgr.admin = acct_mgr.admin',
36             'acct_mgr.db = acct_mgr.db',
37             'acct_mgr.pwhash = acct_mgr.pwhash',
38         ]
39     },
40
41     test_suite = 'acct_mgr.tests.suite',
42 )
Note: See TracBrowser for help on using the browser.