source: keywordreplaceplugin/0.12/setup.py

Last change on this file was 17652, checked in by Ryan J Ollos, 4 years ago

TracKeywordReplace 0.1dev: Conform to PEP8

File size: 414 bytes
RevLine 
[17652]1#!/usr/bin/env python
2
3from setuptools import setup
4
5setup(name='TracKeywordReplace',
6      version='0.1',
7      packages=['keywordreplace'],
8      author='Bangyou Zheng',
9      description='Replace keywords with wiki format from a table in a Wiki page.',
10      url='http://trac-hacks.org/wiki/KeywordReplacePlugin',
11      license='BSD',
12      entry_points = {'trac.plugins': ['keywordreplace = keywordreplace']})
Note: See TracBrowser for help on using the repository browser.