source: tagsplugin/tags/0.4.0/setup.py

Last change on this file was 1835, checked in by muness, 17 years ago

Next release will be 0.4

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