File: __init__.py

package info (click to toggle)
trac-xmlrpc 1.2.0%2Bsvn18657-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 296 kB
  • sloc: python: 3,024; javascript: 26; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 633 bytes parent folder | download | duplicates (2)
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 *