Skip to content

Commit fcc89eb

Browse files
committed
Prune debian stuff, update README, move IETF doc
1 parent 6125ead commit fcc89eb

File tree

10 files changed

+17
-306
lines changed

10 files changed

+17
-306
lines changed

README

Lines changed: 9 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,23 @@
11
Introduction to xmpppy.
2-
http://xmpppy.sf.net/
32

4-
This is my work to replace the jabberpy with the current and maintained
3+
This is my work to replace http://xmpppy.sf.net/ with the current and maintained
54
project.
6-
Now the project nears feature freese of 0.2 branch. Almost all goals are
7-
achieved already. Though the main goal was to write a documentation - at least
8-
a line for every feature of library. Yesterday I have checked in last docstrings
9-
for all yet undocumented modules and now I can say that this issue is resolved
10-
(at least for 0.2 release level).
11-
Documentation exists in three formats.
12-
- The first is the examples that I wrote to show xmpppy in action. This is
5+
Documentation exists in three formats.
6+
- The first is the examples that written to show xmpppy in action. This is
137
two simple scripts - README.py and xsend.py.
14-
- The second is the html pages where I try to describe the idea of library
8+
- The second is the html pages where describing the idea of library
159
and the ways the goals are achieved.
16-
- Third is the docstrings. I am currently using epydoc but other tools
10+
- Third is the docstrings. Using epydoc but other tools
1711
should work too (at least the pydoc works)
1812

1913
Installation
20-
If you are using Debian (sarge or above) you can simply run
21-
apt-get install python-xmpp
22-
and you will get the current stable release of xmpppy installed. After installation
23-
you can do 'import xmpp'. Though currently debian contains 0.1 release of xmpppy so
24-
if you want to use 0.2 branch you should install it manually (python2.3 required).
14+
2515
Here you have several options:
2616
- run 'python setup.py install' from xmpppy distribution as root.
2717
All should work nice.
2818
- if you don't like python installator - just copy xmpp directory into python's
2919
site-packages directory (this is what setup.py does).
30-
- If you have no intention to install library system-wide (or just have no
20+
- If you have no intention to install library system-wide (or just have no
3121
privileges to do it) you can copy xmpp directory just in your application's
3222
directory. Example:
3323
myxmpppytry/
@@ -36,8 +26,6 @@ Here you have several options:
3626
test.py
3727

3828
If you have any questions about xmpppy usage or you have find a bug or want
39-
to share some ideas - you are welcome in xmpppy-devel maillist - see
40-
http://lists.sourceforge.net/lists/listinfo/xmpppy-devel
41-
for details of subscription.
29+
to share some ideas - you are welcome on github
4230

43-
2004.12.26 Alexey Nezhdanov
31+
2014.09.21 Cyril Peponnet

debian/changelog

Lines changed: 0 additions & 124 deletions
This file was deleted.

debian/control

Lines changed: 0 additions & 24 deletions
This file was deleted.

debian/copyright

Lines changed: 0 additions & 30 deletions
This file was deleted.

debian/python-xmpp.docs

Lines changed: 0 additions & 2 deletions
This file was deleted.

debian/python-xmpp.examples

Lines changed: 0 additions & 1 deletion
This file was deleted.

debian/rules

Lines changed: 0 additions & 95 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.

setup.py

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,18 @@
1010

1111
# Set proper release version in source code also!!!
1212
setup(name='xmpppy',
13-
version='0.5.1a1',
14-
author='Alexey Nezhdanov',
15-
author_email='[email protected]',
16-
url='http://xmpppy.sourceforge.net/',
13+
version='0.5.2',
14+
author='Cyril Peponnet',
15+
author_email='[email protected]',
16+
url='https://github.com/ArchipelProject/xmpppy',
1717
description='XMPP-IM-compliant library for jabber instant messenging.',
1818
long_description="""This library provides functionality for writing xmpp-compliant
1919
clients, servers and/or components/transports.
2020
2121
It was initially designed as a \"rework\" of the jabberpy library but
22-
has become a separate product.
23-
24-
Unlike jabberpy it is distributed under the terms of GPL.""",
25-
download_url='http://sourceforge.net/project/showfiles.php?group_id=97081&package_id=103821',
22+
has become a separate product no longer maintened by the previous author.
23+
This is distributed under the terms of GPL.""",
24+
download_url='https://github.com/ArchipelProject/xmpppy/releases',
2625
packages=['xmpp'],
2726
license="GPL",
2827
platforms="All",
@@ -33,7 +32,7 @@
3332
'Operating System :: OS Independent',
3433
'Programming Language :: Python',
3534
'Natural Language :: English',
36-
'Development Status :: 4 - Beta',
35+
'Development Status :: 5 - Production/Stable ',
3736
'Intended Audience :: Developers',
3837
],
3938
)

0 commit comments

Comments
 (0)