source: projects/admonitionmacro/trunk/setup.py @ 7432

Revision 7432, 921 bytes checked in by yasumichi, 11 years ago (diff)

version update

Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3#
4# Copyright (C) 2013 Yasumichi Akahoshi
5# All rights reserved.
6#
7# This software is licensed as described in the file COPYING, which
8# you should have received as part of this distribution.
9#
10
11from setuptools import setup
12
13setup(
14    name = 'AdmonitionMacro',
15    version = '0.2',
16    packages = ['admonitionmacro'],
17    package_data = { 'admonitionmacro': ['htdocs/*.css',
18                                         'htdocs/*.png'] },
19    author = 'Yasumichi Akahoshi',
20    author_email = 'yasumichi@vinelinux.org',
21    description = 'Add admonition to a wiki page',
22    license = 'GPL',
23    keywords = 'trac plugin',
24    url = 'http://trac.vinelinux.org/',
25    classifiers = [
26        'Framework :: Trac',
27    ],
28    install_requires = ['Trac'],
29    entry_points = {
30        'trac.plugins': [
31            'admonitionmacro.macro = admonitionmacro.macro',
32        ]
33    },
34)
Note: See TracBrowser for help on using the repository browser.