1 | #!/usr/bin/env python |
---|
2 | |
---|
3 | from setuptools import setup |
---|
4 | |
---|
5 | setup( |
---|
6 | name = 'TracAccountManager', |
---|
7 | version = '0.1.3', |
---|
8 | author = 'Matthew Good', |
---|
9 | author_email = 'trac@matt-good.net', |
---|
10 | url = 'http://trac-hacks.org/wiki/AccountManagerPlugin', |
---|
11 | description = u'Plugin de gestion de compte utilisateur pour Trac', |
---|
12 | |
---|
13 | license = ''' |
---|
14 | "THE BEER-WARE LICENSE" (Revision 42): |
---|
15 | <trac@matt-good.net> wrote this file. As long as you retain this notice you |
---|
16 | can do whatever you want with this stuff. If we meet some day, and you think |
---|
17 | this stuff is worth it, you can buy me a beer in return. Matthew Good''', |
---|
18 | |
---|
19 | zip_safe=True, |
---|
20 | packages=['acct_mgr'], |
---|
21 | package_data={'acct_mgr': ['templates/*.cs']}, |
---|
22 | |
---|
23 | install_requires = [ |
---|
24 | 'TracWebAdmin', |
---|
25 | ], |
---|
26 | |
---|
27 | entry_points = { |
---|
28 | 'trac.plugins': [ |
---|
29 | 'acct_mgr.web_ui = acct_mgr.web_ui', |
---|
30 | 'acct_mgr.htfile = acct_mgr.htfile', |
---|
31 | 'acct_mgr.http = acct_mgr.http', |
---|
32 | 'acct_mgr.api = acct_mgr.api', |
---|
33 | 'acct_mgr.admin = acct_mgr.admin', |
---|
34 | 'acct_mgr.db = acct_mgr.db', |
---|
35 | 'acct_mgr.pwhash = acct_mgr.pwhash', |
---|
36 | ] |
---|
37 | }, |
---|
38 | |
---|
39 | test_suite = 'acct_mgr.tests.suite', |
---|
40 | ) |
---|