source: tagsplugin/branches/0.8-stable/tractags/__init__.py

Last change on this file was 13859, checked in by Steffen Hoffmann, 9 years ago

TagsPlugin: Add license headers to HTML templates, change minimal Trac version check, refs #11690.

Component dependency checks are better performed at runtime, and Genshi is
required for Trac anyway.

Following Ryan's recommendation in http://trac-hacks.org/wiki/DevGuide.

File size: 512 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
15trac_version_min = '0.11'
16pkg_resources.require('Trac >= %s' % trac_version_min)
17
18
19import api
20import db
21import wiki
22import ticket
23import macros
24import web_ui
25import admin
Note: See TracBrowser for help on using the repository browser.