~vcs-imports/jabberpy/main

1 by mallum
Initial revision
1
#!/usr/bin/env python2
31 by mallum
Improved README and setup.py
2
import sys
3
4
try:
5
    from distutils.core import setup
6
except:
7
    if sys.version[0] < 2:
8
        print "jabber.py requires at least python 2.0"
9
        print "Setup cannot continue."
10
        sys.exit(1)
11
    print "You appear not to have the Python distutils modules"
12
    print "installed. Setup cannot continue."
72 by shire
13
    print "You can manually install jabberpy by coping the jabber"
14
    print "directory to your /python-libdir/site-packages"    
31 by mallum
Improved README and setup.py
15
    print "directory."
16
    sys.exit(1)
17
    
29 by mallum
more documentation added, better diconnection handling, renaming to lower case of modules
18
setup(name="jabber.py",
52 by mallum
varous doc changes for 0.3 release
19
      version="0.3-1",
72 by shire
20
      #py_modules=["xmlstream","jabber"],
21
      packages=["jabber"],
31 by mallum
Improved README and setup.py
22
      description="Python xmlstream and jabber IM protocol libs",
1 by mallum
Initial revision
23
      author="Matthew Allum",
22 by mallum
0.1 release
24
      author_email="breakfast@10.am",
58 by mallum
more doc fixes before final 0.3 release
25
      url="http://jabberpy.sf.net/",
26
      license="LGPL"
1 by mallum
Initial revision
27
      )
28
31 by mallum
Improved README and setup.py
29
30
31
32
33