| Trees | Indices | Help |
|
|---|
|
|
1 # -*- coding: utf-8 -*-
2 #
3 # Copyright (C) 2003-2020 Edgewall Software
4 # All rights reserved.
5 #
6 # This software is licensed as described in the file COPYING, which
7 # you should have received as part of this distribution. The terms
8 # are also available at https://trac.edgewall.org/wiki/TracLicense.
9 #
10 # This software consists of voluntary contributions made by many
11 # individuals. For the exact contribution history, see the revision
12 # history and logs, available at https://trac.edgewall.org/log/.
13
14 from pkg_resources import DistributionNotFound, get_distribution
15
16 try:
17 __version__ = get_distribution('Trac').version
18 except DistributionNotFound:
19 __version__ = '1.0.21'
20
| Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Wed Jul 5 01:52:18 2023 | http://epydoc.sourceforge.net |