source: tagsplugin/tags/0.4.1/setup.py

Last change on this file was 2282, checked in by Alec Thomas, 16 years ago

TagsPlugin:

Tag 0.4.1.

File size: 384 bytes
RevLine 
[1752]1from setuptools import setup
2
3setup(
4    name='TracTags',
[2281]5    version='0.4.1',
[1752]6    packages=['tractags'],
7    package_data={'tractags' : ['templates/*.cs', 'htdocs/js/*.js', 'htdocs/css/*.css']},
8    author='Muness Alrubaie',
[1821]9    url='http://muness.textdriven.com/trac/wiki/tags',
[1752]10    description='Tag plugin for Trac',
[1781]11    entry_points = {'trac.plugins': ['tractags = tractags']}
[1752]12    )
Note: See TracBrowser for help on using the repository browser.