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