| Line | |
|---|
| 1 | from setuptools import setup |
|---|
| 2 | |
|---|
| 3 | setup( |
|---|
| 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.