diff options
author | Huang Peng <shawn.p.huang@gmail.com> | 2008-10-03 19:12:15 +0800 |
---|---|---|
committer | Huang Peng <shawn.p.huang@gmail.com> | 2008-10-03 19:12:15 +0800 |
commit | 386c0bf61c1ce647e3792af88ee1adab8393aedd (patch) | |
tree | 54ad3d47b6c200ed59044f2bc1b8697115132933 /ibus/_config.py.in | |
parent | ecb3f104ef07e1d08b1562396a1d57cb89945d4f (diff) | |
download | ibus-386c0bf61c1ce647e3792af88ee1adab8393aedd.tar.gz ibus-386c0bf61c1ce647e3792af88ee1adab8393aedd.tar.xz ibus-386c0bf61c1ce647e3792af88ee1adab8393aedd.zip |
Rename config.py.in to _config.py.in
Diffstat (limited to 'ibus/_config.py.in')
-rw-r--r-- | ibus/_config.py.in | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/ibus/_config.py.in b/ibus/_config.py.in new file mode 100644 index 0000000..ccd2ff5 --- /dev/null +++ b/ibus/_config.py.in @@ -0,0 +1,35 @@ +# vim:set et sts=4 sw=4: +# +# ibus - The Input Bus +# +# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com> +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program; if not, write to the +# Free Software Foundation, Inc., 59 Temple Place, Suite 330, +# Boston, MA 02111-1307 USA + +__all__ = ( + "get_version", + "get_copyright", + "get_license" +) + +def get_version(): + return "@PACKAGE_VERSION@" + +def get_copyright(): + return "Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>" + +def get_license(): + return "LGPL" |