source: tagsplugin/tags/0.6/setup.py

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

Updated author name.

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