|
Revision 105, 1.0 KB
(checked in by mbooth, 15 months ago)
|
|
Add the patch for Trac needed for the plugin to work.
|
| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # Copyright (C) 2009 Mat Booth <mat@matbooth.co.uk> |
|---|
| 3 | # All rights reserved. |
|---|
| 4 | # |
|---|
| 5 | # This software is licensed as described in the file COPYING, which |
|---|
| 6 | # you should have received as part of this distribution. |
|---|
| 7 | |
|---|
| 8 | from setuptools import setup |
|---|
| 9 | |
|---|
| 10 | setup( |
|---|
| 11 | name='MultiProduct', |
|---|
| 12 | version='0.0.1', |
|---|
| 13 | author='Mat Booth', |
|---|
| 14 | author_email='mat@matbooth.co.uk', |
|---|
| 15 | url='http://www.matbooth.co.uk/trac/wiki/MultiProductStart', |
|---|
| 16 | license='BSD', |
|---|
| 17 | description='Multiple product support for Trac', |
|---|
| 18 | long_description='Adds multiple product support to the Trac issue tracking system.', |
|---|
| 19 | packages=['multiproduct'], |
|---|
| 20 | package_data={ |
|---|
| 21 | 'multiproduct' : [ |
|---|
| 22 | 'htdocs/css/*.css', |
|---|
| 23 | 'htdocs/js/*.js', |
|---|
| 24 | 'templates/*.html', |
|---|
| 25 | ] |
|---|
| 26 | }, |
|---|
| 27 | entry_points={ |
|---|
| 28 | 'trac.plugins': [ |
|---|
| 29 | 'multiproduct.admin = multiproduct.admin', |
|---|
| 30 | 'multiproduct.main = multiproduct.main', |
|---|
| 31 | 'multiproduct.ticket = multiproduct.ticket', |
|---|
| 32 | ] |
|---|
| 33 | }, |
|---|
| 34 | install_requires = []) |
|---|