source: tagsplugin/tags/0.3.1/setup.py

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

0.3 is released now. Let's up the version number to 0.3.1.
(We'll change to 0.4 if we break compatibility with 0.3)

File size: 392 bytes
Line 
1from setuptools import setup
2
3setup(
4    name='TracTags',
5    version='0.3.1',
6    packages=['tractags'],
7    package_data={'tractags' : ['templates/*.cs', 'htdocs/js/*.js', 'htdocs/css/*.css']},
8    author='Muness Alrubaie',
9    url='http://dev.muness.textdriven.com/trac.cgi/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.