root/discussionplugin/0.10/setup.py

Revision 3584, 2.5 kB (checked in by Blackhex, 8 months ago)
Line 
1 #!/usr/bin/env python
2 # -*- coding: utf8 -*-
3
4 from setuptools import setup
5
6 setup(
7   name = 'TracDiscussion',
8   version = '0.5',
9   packages = ['tracdiscussion', 'tracdiscussion.db'],
10   package_data = {'tracdiscussion' : ['templates/*.cs', 'htdocs/css/*.css']},
11   entry_points = {'trac.plugins': ['TracDiscussion.api = tracdiscussion.api',
12     'TracDiscussion.core = tracdiscussion.core',
13     'TracDiscussion.init = tracdiscussion.init',
14     'TracDiscussion.wiki = tracdiscussion.wiki',
15     'TracDiscussion.timeline = tracdiscussion.timeline',
16     'TracDiscussion.admin = tracdiscussion.admin',
17     'TracDiscussion.search = tracdiscussion.search',
18     'TracDiscussion.notification = tracdiscussion.notification',
19     'TracDiscussion.spamfilter = tracdiscussion.spamfilter']},
20   install_requires = ['TracWebAdmin', 'TracSpamFilter'],
21   keywords = 'trac discussion',
22   author = 'Alec Thomas, Radek Bartoň',
23   author_email = 'trac-hacks@swapoff.org',
24   url = 'http://trac-hacks.swapoff.org/wiki/DiscussionPlugin',
25   description = 'Discussion forum plugin for Trac',
26   license = '''
27 Copyright (c) 2005, Alec Thomas
28 All rights reserved.
29
30 Redistribution and use in source and binary forms, with or without modification,
31 are permitted provided that the following conditions are met:
32
33     * Redistributions of source code must retain the above copyright notice,
34       this list of conditions and the following disclaimer.
35     * Redistributions in binary form must reproduce the above copyright notice,
36       this list of conditions and the following disclaimer in the documentation
37       and/or other materials provided with the distribution.
38     * Neither the name of the <ORGANIZATION> nor the names of its contributors
39       may be used to endorse or promote products derived from this software
40       without specific prior written permission.
41
42 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
43 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
44 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
45 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
46 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
47 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
48 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
49 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
50 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
51 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
52 '''
53 )
Note: See TracBrowser for help on using the browser.