blob: 19cb3c76914708fcc2083484da608373d502e805 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
#################################################################################
# LAYMAN VERSION
#################################################################################
# File: version.py
#
# Current version number
#
# Copyright:
# (c) 2005 Gunnar Wrobel
# Distributed under the terms of the GNU General Public License v2
#
# Author(s):
# Gunnar Wrobel <wrobel@gentoo.org>
#
__version__ = "$Id$"
LMVERSION = '0.1'
if __name__ == '__main__':
print LMVERSION
|