source: tagsplugin/tags/0.3/setup.py

Last change on this file was 1783, checked in by Alec Thomas, 18 years ago
  • Big API change, see api.py for details, but it makes life much easier for users.
  • ListTagged now performs an intersection rather than a union by default.
  • Version bump to 0.3 because of the API changes.
  • Added start of unit tests (still not 100% working).
File size: 390 bytes
Line 
1from setuptools import setup
2
3setup(
4    name='TracTags',
5    version='0.3',
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.