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
Line 
1from setuptools import setup
2
3setup(
4    name='TracTags',
5    version='0.5',
6    packages=['tractags'],
7    package_data={'tractags' : ['templates/*.html', 'htdocs/js/*.js', 'htdocs/css/*.css']},
8    author='Muness Alrubaie',
9    license='BSD',
10    url='http://trac-hacks.org/wiki/TagsPlugin',
11    description='Tags plugin for Trac',
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'],
15    )
Note: See TracBrowser for help on using the repository browser.