#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2013 Yasumichi Akahoshi
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
#

from setuptools import setup

setup(
    name = 'AdmonitionMacro',
    version = '0.2',
    packages = ['admonitionmacro'],
    package_data = { 'admonitionmacro': ['htdocs/*.css',
                                         'htdocs/*.png'] },
    author = 'Yasumichi Akahoshi',
    author_email = 'yasumichi@vinelinux.org',
    description = 'Add admonition to a wiki page',
    license = 'GPL',
    keywords = 'trac plugin',
    url = 'http://trac.vinelinux.org/',
    classifiers = [
        'Framework :: Trac',
    ],
    install_requires = ['Trac'],
    entry_points = {
        'trac.plugins': [
            'admonitionmacro.macro = admonitionmacro.macro',
        ]
    },
)
