|
Revision 1278, 429 bytes
(checked in by athomas, 2 years ago)
|
XmlRpcPlugin:
- Added system.getAPIVersion(). Returns a two element tuple containing the Trac XML-RPC version number. Closes #652 (refer to this ticket for semantics).
- Added ticket.getTicketFields(). Forwards directly to TicketSystem().get_ticket_fields(). Closes #651.
- Fixed #723.
|
| Line | |
|---|
| 1 |
#!/usr/bin/env python |
|---|
| 2 |
|
|---|
| 3 |
from setuptools import setup |
|---|
| 4 |
|
|---|
| 5 |
setup( |
|---|
| 6 |
name='TracXMLRPC', |
|---|
| 7 |
version='0.1', |
|---|
| 8 |
author='Alec Thomas', |
|---|
| 9 |
author_email='alec@swapoff.org', |
|---|
| 10 |
url='http://trac-hacks.swapoff.org/wiki/XmlRpcPlugin', |
|---|
| 11 |
description='XML-RPC interface to Trac', |
|---|
| 12 |
zip_safe=True, |
|---|
| 13 |
packages=['tracrpc'], |
|---|
| 14 |
package_data={'tracrpc': ['templates/*.cs']}, |
|---|
| 15 |
entry_points={'trac.plugins': 'TracXMLRPC = tracrpc'}, |
|---|
| 16 |
) |
|---|