mirror of
https://github.com/gryf/pygtktalog.git
synced 2025-12-17 03:20:17 +01:00
In this patch, most notable changes are: - use python3 exclusively for tox - fix up broken tests - a couple of style issues fixes here and there
19 lines
513 B
Python
19 lines
513 B
Python
"""
|
|
Project: pyGTKtalog
|
|
Description: Initialization for main module - i18n and so.
|
|
Type: core
|
|
Author: Roman 'gryf' Dobosz, gryf73@gmail.com
|
|
Created: 2009-05-05
|
|
"""
|
|
__version__ = "3.0.0"
|
|
__appname__ = "pyGTKtalog"
|
|
__copyright__ = "\u00A9 Roman 'gryf' Dobosz"
|
|
__summary__ = "%s is simple tool for managing file collections." % __appname__
|
|
__web__ = "http://github.com/gryf/pygtktalog"
|
|
|
|
__all__ = ['dbcommon',
|
|
'dbobjects',
|
|
'dialogs',
|
|
'logger',
|
|
'misc']
|