annotate urwid_satext/__init__.py @ 145:d505d9ee792e v0.8.0b1

v0.8.0b1 release
author Goffi <goffi@goffi.org>
date Fri, 18 Jun 2021 13:19:44 +0200
parents 144bdf877d21
children 3ff24fbf03c1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
145
d505d9ee792e v0.8.0b1 release
Goffi <goffi@goffi.org>
parents: 143
diff changeset
1 #!/usr/bin/env python3
128
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
2
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
3 # Urwid SàT extensions
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
4 # Copyright (C) 2009-2016 Jérôme Poisson (goffi@goffi.org)
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
5 #
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
6 # This program is free software: you can redistribute it and/or modify
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
7 # it under the terms of the GNU Lesser General Public License as published by
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
8 # the Free Software Foundation, either version 3 of the License, or
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
9 # (at your option) any later version.
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
10 #
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
11 # This program is distributed in the hope that it will be useful,
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
14 # GNU Lesser General Public License for more details.
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
15 #
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
16 # You should have received a copy of the GNU Lesser General Public License
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
18
139
1970df98643d i18n: moved gettext install
Goffi <goffi@goffi.org>
parents: 136
diff changeset
19 import gettext
143
144bdf877d21 python 3 port (using 2to3)
Goffi <goffi@goffi.org>
parents: 140
diff changeset
20 gettext.install('urwid_satext')
139
1970df98643d i18n: moved gettext install
Goffi <goffi@goffi.org>
parents: 136
diff changeset
21
140
810f92c7de88 0.7.0 « La Commune » release
Goffi <goffi@goffi.org>
parents: 139
diff changeset
22
145
d505d9ee792e v0.8.0b1 release
Goffi <goffi@goffi.org>
parents: 143
diff changeset
23 __version__ = '0.8.0b1'