~ubuntu-branches/ubuntu/utopic/telepathy-python/utopic

« back to all changes in this revision

Viewing changes to telepathy/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2006-08-24 14:32:44 UTC
  • Revision ID: james.westby@ubuntu.com-20060824143244-1wmh0uwayv1mgmfb
Tags: upstream-0.13.2
ImportĀ upstreamĀ versionĀ 0.13.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# telepathy-python - Base classes defining the interfaces of the Telepathy framework
 
2
#
 
3
# Copyright (C) 2005, 2006 Collabora Limited
 
4
# Copyright (C) 2005, 2006 Nokia Corporation
 
5
#
 
6
# This library is free software; you can redistribute it and/or
 
7
# modify it under the terms of the GNU Lesser General Public
 
8
# License as published by the Free Software Foundation; either
 
9
# version 2.1 of the License, or (at your option) any later version.
 
10
#
 
11
# This library is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
# Library General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU Lesser General Public
 
17
# License along with this library; if not, write to the Free Software
 
18
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
 
 
20
version = (0, 13, 2)
 
21
__version__ = '.'.join(str(x) for x in version)
 
22
 
 
23
from telepathy.constants import *
 
24
from telepathy.errors import *
 
25
from telepathy.interfaces import *
 
26
 
 
27
import telepathy.client as client
 
28
import telepathy.server as server