source: tagsplugin/tags/0.5/setup.py

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

Tagged 0.5 release.

File size: 538 bytes
RevLine 
[1752]1from setuptools import setup
2
3setup(
4    name='TracTags',
[2566]5    version='0.5',
[1752]6    packages=['tractags'],
[2926]7    package_data={'tractags' : ['templates/*.html', 'htdocs/js/*.js', 'htdocs/css/*.css']},
[1752]8    author='Muness Alrubaie',
[2951]9    license='BSD',
[2566]10    url='http://trac-hacks.org/wiki/TagsPlugin',
[2951]11    description='Tags plugin for Trac',
[2566]12    entry_points = {'trac.plugins': ['tractags = tractags']},
13    dependency_links=['http://svn.edgewall.org/repos/genshi/trunk#egg=Genshi-dev'],
14    install_requires=['Genshi >= 0.5.dev-r698,==dev'],
[1752]15    )
Note: See TracBrowser for help on using the repository browser.