~ubuntu-branches/ubuntu/raring/trac-accountmanager/raring

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Leo Costela
  • Date: 2008-07-15 17:21:11 UTC
  • Revision ID: james.westby@ubuntu.com-20080715172111-ool7wmy573gqolfr
Tags: upstream-0.2.1~vcs20080715
ImportĀ upstreamĀ versionĀ 0.2.1~vcs20080715

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
)