Changeset 672
- Timestamp:
- 05/12/08 14:17:04 (6 months ago)
- Files:
-
- oss/headstock/headstock/example/simplechat/simplechat.py (modified) (1 diff)
- oss/headstock/setup.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
oss/headstock/headstock/example/simplechat/simplechat.py
r668 r672 19 19 * dispatching to the RosterHandler the fact the server supports the feature 20 20 21 * RegisterHandler: 22 * registring a new user using in-band registration if supported 21 23 22 24 The actual XMPP client is the Client component that sets up the different oss/headstock/setup.py
r667 r672 1 1 """ 2 Some XMPP extensions 2 XMPP implementation using the Kamaelia library 3 3 """ 4 4 … … 12 12 setup(name = "headstock", 13 13 version = '0.1.0', 14 description = " Some XMPP extensions",14 description = "XMPP implementation using the Kamaelia library", 15 15 maintainer = "Sylvain Hellegouarch", 16 16 maintainer_email = "sh@defuze.org", … … 23 23 platforms = ["any"], 24 24 license = 'BSD', 25 long_description = "", 25 long_description = "XMPP implementation using the Kamaelia library", 26 install_requires= ['bridge>=0.3.5'], 26 27 ) 27 28
