Changeset 129

Show
Ignore:
Timestamp:
10/05/05 17:54:47 (3 years ago)
Author:
athomas
Message:

DiscussionPlugin:

  • Renamed main module to tracdiscussion to avoid conflicts.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • discussionplugin/0.9/setup.py

    r73 r129  
    11from setuptools import setup 
    22 
    3 PACKAGE = 'TracDiscussion' 
    4 VERSION = '0.1' 
     3setup( 
     4    name = 'TracDiscussion', 
     5    version = '0.1', 
     6    packages = [ 'tracdiscussion' ], 
     7    package_data = { 
     8        'tracdiscussion' : [ 
     9            'templates/*.cs', 
     10            'htdocs/css/*.css' 
     11        ] 
     12    }, 
     13    author = 'Alec Thomas', 
     14    author_email = 'trac-hacks@swapoff.org', 
     15    url = 'http://trac-hacks.swapoff.org/wiki/DiscussionPlugin', 
     16    description = 'Discussion forum plugin for Trac', 
     17    license = ''' 
     18Copyright (c) 2005, Alec Thomas 
     19All rights reserved. 
    520 
    6 setup(name=PACKAGE, version=VERSION, packages=['discussion'], 
    7     package_data={'discussion' : ['templates/*.cs', 'htdocs/css/*.css']}) 
     21Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 
     22 
     23    * Redistributions of source code must retain the above copyright notice, 
     24      this list of conditions and the following disclaimer. 
     25    * Redistributions in binary form must reproduce the above copyright notice, 
     26      this list of conditions and the following disclaimer in the documentation 
     27      and/or other materials provided with the distribution. 
     28    * Neither the name of the <ORGANIZATION> nor the names of its contributors 
     29      may be used to endorse or promote products derived from this software 
     30      without specific prior written permission. 
     31 
     32THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
     33ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
     34WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
     35DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR 
     36ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
     37(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
     38LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 
     39ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
     40(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
     41SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     42''' 
     43