1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# -*- coding: utf-8 -*-
"""
License: BSD
(c) 2005-2008 ::: Alec Thomas (alec@swapoff.org)
(c) 2009 ::: www.CodeResort.com - BV Network AS (simon-code@bvnetwork.no)
"""
import pkg_resources
pkg_resources.require('Trac>=0.12')
__author__ = ['Alec Thomas <alec@swapoff.org>',
'Odd Simon Simonsen <simon-code@bvnetwork.no>']
__license__ = 'BSD'
__version__ = pkg_resources.get_distribution('TracXMLRPC').version
from tracrpc.api import *
from tracrpc.json_rpc import *
from tracrpc.xml_rpc import *
from tracrpc.web_ui import *
from tracrpc.ticket import *
from tracrpc.wiki import *
from tracrpc.search import *
|