| Revision 7432,
921 bytes
checked in by yasumichi, 14 years ago
(diff) |
|
version update
|
| Rev | Line | |
|---|
| [7430] | 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 | |
|---|
| 11 | from setuptools import setup |
|---|
| 12 | |
|---|
| 13 | setup( |
|---|
| 14 | name = 'AdmonitionMacro', |
|---|
| [7432] | 15 | version = '0.2', |
|---|
| [7430] | 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.