root/discussionplugin/0.9/setup.py

Revision 1066, 2.3 kB (checked in by Blackhex, 2 years ago)

DiscussionPlugin:

  • Big code structure rewrite.
  • Qutote functionality for ticket #513
  • Added testing sheet in ODF
  • Few changes when displaying empty lists.
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.core = tracdiscussion.core',
12     'TracDiscussion.init = tracdiscussion.init',
13     'TracDiscussion.wiki = tracdiscussion.wiki',
14     'TracDiscussion.timeline = tracdiscussion.timeline',
15     'TracDiscussion.admin = tracdiscussion.admin',
16     'TracDiscussion.search = tracdiscussion.search']},
17   keywords = 'trac discussion',
18   author = 'Alec Thomas, Radek Bartoň',
19   author_email = 'trac-hacks@swapoff.org',
20   url = 'http://trac-hacks.swapoff.org/wiki/DiscussionPlugin',
21   description = 'Discussion forum plugin for Trac',
22   license = '''
23 Copyright (c) 2005, Alec Thomas
24 All rights reserved.
25
26 Redistribution and use in source and binary forms, with or without modification,
27 are permitted provided that the following conditions are met:
28
29     * Redistributions of source code must retain the above copyright notice,
30       this list of conditions and the following disclaimer.
31     * Redistributions in binary form must reproduce the above copyright notice,
32       this list of conditions and the following disclaimer in the documentation
33       and/or other materials provided with the distribution.
34     * Neither the name of the <ORGANIZATION> nor the names of its contributors
35       may be used to endorse or promote products derived from this software
36       without specific prior written permission.
37
38 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
39 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
40 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
41 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
42 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
43 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
44 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
45 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
46 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
47 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48 '''
49 )
Note: See TracBrowser for help on using the browser.