1
2
3 from distutils.core import setup,sys
4 import os
5
6 if sys.version < '2.2.3':
7 from distutils.dist import DistributionMetadata
8 DistributionMetadata.classifiers = None
9 DistributionMetadata.download_url = None
10
11
12 setup(name='xmpppy',
13 version='0.5.2',
14 author='Cyril Peponnet',
15 author_email='cyril@peponnet.fr',
16 url='https://github.com/ArchipelProject/xmpppy',
17 description='XMPP-IM-compliant library for jabber instant messenging.',
18 long_description="""This library provides functionality for writing xmpp-compliant
19 clients, servers and/or components/transports.
20
21 It was initially designed as a \"rework\" of the jabberpy library but
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',
25 package_dir={'xmpp': ''},
26 packages=['xmpp'],
27 license="GPL",
28 platforms="All",
29 keywords=['jabber','xmpp'],
30 classifiers = [
31 'Topic :: Communications :: Chat',
32 'License :: OSI Approved :: GNU General Public License (GPL)',
33 'Operating System :: OS Independent',
34 'Programming Language :: Python',
35 'Natural Language :: English',
36 'Development Status :: 5 - Production/Stable ',
37 'Intended Audience :: Developers',
38 ],
39 )
40