| 1 |
#!/usr/bin/env python |
|---|
| 2 |
# -*- coding: utf-8 -*- |
|---|
| 3 |
|
|---|
| 4 |
from setuptools import setup, find_packages |
|---|
| 5 |
|
|---|
| 6 |
setup( |
|---|
| 7 |
name='TracDoxygen', |
|---|
| 8 |
description='Doxygen plugin for Trac', |
|---|
| 9 |
keywords='trac doxygen', |
|---|
| 10 |
version='0.4', |
|---|
| 11 |
url='http://trac-hacks.org/wiki/DoxygenPlugin', |
|---|
| 12 |
license = """Copyright (C) 2005 Jason Parks <jparks@jparks.net> |
|---|
| 13 |
All rights reserved. |
|---|
| 14 |
|
|---|
| 15 |
Redistribution and use in source and binary forms, with or without |
|---|
| 16 |
modification, are permitted provided that the following conditions |
|---|
| 17 |
are met: |
|---|
| 18 |
|
|---|
| 19 |
1. Redistributions of source code must retain the above copyright |
|---|
| 20 |
notice, this list of conditions and the following disclaimer. |
|---|
| 21 |
2. Redistributions in binary form must reproduce the above copyright |
|---|
| 22 |
notice, this list of conditions and the following disclaimer in |
|---|
| 23 |
the documentation and/or other materials provided with the |
|---|
| 24 |
distribution. |
|---|
| 25 |
3. The name of the author may not be used to endorse or promote |
|---|
| 26 |
products derived from this software without specific prior |
|---|
| 27 |
written permission. |
|---|
| 28 |
|
|---|
| 29 |
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
|---|
| 30 |
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
|---|
| 31 |
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
|---|
| 32 |
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
|---|
| 33 |
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
|---|
| 34 |
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE |
|---|
| 35 |
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
|---|
| 36 |
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER |
|---|
| 37 |
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
|---|
| 38 |
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
|---|
| 39 |
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.""", |
|---|
| 40 |
author='Jason Parks, Radek BartoÅ', |
|---|
| 41 |
author_email='blackhex@post.cz', |
|---|
| 42 |
long_description=""" |
|---|
| 43 |
""", |
|---|
| 44 |
zip_safe=True, |
|---|
| 45 |
packages=['doxygentrac'], |
|---|
| 46 |
package_data={'doxygentrac': ['templates/*.cs', 'htdocs/css/*.css']}, |
|---|
| 47 |
entry_points={'trac.plugins': 'doxygentrac = doxygentrac.doxygentrac'}) |
|---|