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

Last change on this file was 17883, checked in by Ryan J Ollos, 3 years ago

TracTags 0.12dev: Drop support for Trac < 1.4

Refs #13814.

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.4')
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.