~ubuntu-branches/ubuntu/precise/pymsn/precise

« back to all changes in this revision

Viewing changes to pymsn/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville, Sjoerd Simons, Laurent Bigonville, Jonny Lamb
  • Date: 2008-01-17 18:23:14 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080117182314-lwymmpnk2ut3rvr1
Tags: 0.3.1-0ubuntu1
[ Sjoerd Simons ]
* debian/rules: remove dh_python, it's no longer needed

[ Laurent Bigonville ]
* New upstream release (0.3.1)
* debian/control:
  - Add myself as an Uploaders
  - Add python:Provides for binary package
  - Add python-ctypes and python-crypto to build-deps/deps
* debian/rules: remove binary-install rule
* Add watch file
* remove pycompat file, not needed anymore
* Modify Maintainer value to match the DebianMaintainerField
  specification.

[ Jonny Lamb ]
* Added python-adns to build-deps/deps.
* Added python-pyopenssl to build-deps/deps.
* Updated copyright.
* Upped Standards-Version to 3.7.3.
* Added "XS-Dm-Upload-Allowed: yes" under the request of Sjoerd Simons.
* Added myself to Uploaders.
* Added Homepage to control.
* Added Vcs-Bzr to control.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- coding: utf-8 -*-
2
2
#
3
 
# pymsn - a python client library for Msn
4
 
#
5
3
# Copyright (C) 2005-2006 Ali Sabil <ali.sabil@gmail.com>
6
4
#
7
5
# This program is free software; you can redistribute it and/or modify
22
20
 
23
21
pymsn is a library, written in Python, for accessing the MSN
24
22
instant messaging service.
 
23
    
 
24
    @group High Level Interface: client, profile, conversation, event
 
25
    @group Low Level Interface: msnp, msnp2p, service
 
26
    @group Network Layer: gnet
25
27
"""
26
28
 
27
 
__version__ = "$Id$"
28
 
 
29
 
from consts import ContactListStatus, PresenceStatus, MessageAcknowledgement, \
30
 
    List
31
 
from protocol import Contact
32
 
from gio import network
33
 
from client import Client, Conversation
34
 
import transport
35
 
import storage
 
29
__version__ = "0.3.1"
 
30
__author__ = "Ali Sabil <ali.sabil@gmail.com>"
 
31
__url__ = "http://telepathy.freedesktop.org/wiki/Pymsn"
 
32
__license__ = "GNU GPL"
 
33
 
 
34
from client import *
 
35
from conversation import *
 
36
from profile import NetworkID, Presence, Privacy, Membership, Contact, Group
 
37
import event
 
38
 
 
39
import gnet.proxy
 
40
Proxy = gnet.proxy.ProxyFactory
 
41
ProxyInfos = gnet.proxy.ProxyInfos