]>
Commit | Line | Data |
---|---|---|
7bf85405 RD |
1 | #---------------------------------------------------------------------------- |
2 | # Name: __init__.py | |
b8b8dda7 RD |
3 | # Purpose: The presence of this file turns this directory into a |
4 | # Python package. | |
7bf85405 RD |
5 | # |
6 | # Author: Robin Dunn | |
7 | # | |
8 | # Created: 8/8/98 | |
9 | # RCS-ID: $Id$ | |
10 | # Copyright: (c) 1998 by Total Control Software | |
11 | # Licence: wxWindows license | |
12 | #---------------------------------------------------------------------------- | |
13 | ||
2f90df85 RD |
14 | import __version__ |
15 | __version__ = __version__.ver | |
16 | ||
17 | ||
18 | # Ensure the main extension module is loaded, in case the add-on modules | |
19 | # (such as utils,) are used standalone. | |
bb0054cd | 20 | import wxc |
2f90df85 | 21 | wxc.__version__ = __version__ |
b26e2dc4 | 22 | |
7bf85405 | 23 | #---------------------------------------------------------------------------- |
bb0054cd | 24 |