source: tagsplugin/tags/0.10/tractags/__init__.py

Last change on this file was 16296, checked in by Ryan J Ollos, 7 years ago

0.10dev: Require Trac >= 1.2

Fixes #12788.

File size: 468 bytes
Line 
1# -*- coding: utf-8 -*-
2#
3# Copyright (C) 2006 Alec Thomas <alec@swapoff.org>
4# Copyright (C) 2012-2014 Steffen Hoffmann <hoff.st@web.de>
5#
6# This software is licensed as described in the file COPYING, which
7# you should have received as part of this distribution.
8#
9
10"""
11See tractags.api for detailed information.
12"""
13
14import pkg_resources
15pkg_resources.require('Trac >= 1.2')
16
17
18import api
19import db
20import wiki
21import ticket
22import macros
23import web_ui
24import admin
Note: See TracBrowser for help on using the repository browser.