Make sure setup.py has all of the plugins.
[slixmpp.git] / setup.py
blob3ccac3af1c8bf7e01050a84f4b307d4f1616a413
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
4 # Copyright (C) 2007-2008 Nathanael C. Fritz
5 # All Rights Reserved
7 # This software is licensed as described in the README file,
8 # which you should have received as part of this distribution.
11 # from ez_setup import use_setuptools
12 from distutils.core import setup
13 import sys
15 import sleekxmpp
17 # if 'cygwin' in sys.platform.lower():
18 # min_version = '0.6c6'
19 # else:
20 # min_version = '0.6a9'
22 # try:
23 # use_setuptools(min_version=min_version)
24 # except TypeError:
25 # # locally installed ez_setup won't have min_version
26 # use_setuptools()
28 # from setuptools import setup, find_packages, Extension, Feature
30 VERSION = sleekxmpp.__version__
31 DESCRIPTION = 'SleekXMPP is an elegant Python library for XMPP (aka Jabber, Google Talk, etc).'
32 LONG_DESCRIPTION = """
33 SleekXMPP is an elegant Python library for XMPP (aka Jabber, Google Talk, etc).
34 """
36 CLASSIFIERS = [ 'Intended Audience :: Developers',
37 'License :: OSI Approved :: MIT',
38 'Programming Language :: Python',
39 'Topic :: Software Development :: Libraries :: Python Modules',
42 packages = [ 'sleekxmpp',
43 'sleekxmpp/stanza',
44 'sleekxmpp/test',
45 'sleekxmpp/xmlstream',
46 'sleekxmpp/xmlstream/matcher',
47 'sleekxmpp/xmlstream/handler',
48 'sleekxmpp/plugins',
49 'sleekxmpp/plugins/xep_0009',
50 'sleekxmpp/plugins/xep_0009/stanza',
51 'sleekxmpp/plugins/xep_0030',
52 'sleekxmpp/plugins/xep_0030/stanza',
53 'sleekxmpp/plugins/xep_0050',
54 'sleekxmpp/plugins/xep_0059',
55 'sleekxmpp/plugins/xep_0060',
56 'sleekxmpp/plugins/xep_0060/stanza',
57 'sleekxmpp/plugins/xep_0066',
58 'sleekxmpp/plugins/xep_0085',
59 'sleekxmpp/plugins/xep_0086',
60 'sleekxmpp/plugins/xep_0092',
61 'sleekxmpp/plugins/xep_0128',
62 'sleekxmpp/plugins/xep_0199',
63 'sleekxmpp/plugins/xep_0202',
64 'sleekxmpp/plugins/xep_0203',
65 'sleekxmpp/plugins/xep_0224',
66 'sleekxmpp/plugins/xep_0249',
67 'sleekxmpp/features',
68 'sleekxmpp/features/feature_mechanisms',
69 'sleekxmpp/features/feature_mechanisms/stanza',
70 'sleekxmpp/features/feature_starttls',
71 'sleekxmpp/features/feature_bind',
72 'sleekxmpp/features/feature_session',
73 'sleekxmpp/thirdparty',
74 'sleekxmpp/thirdparty/suelta',
75 'sleekxmpp/thirdparty/suelta/mechanisms',
78 setup(
79 name = "sleekxmpp",
80 version = VERSION,
81 description = DESCRIPTION,
82 long_description = LONG_DESCRIPTION,
83 author = 'Nathanael Fritz',
84 author_email = 'fritzy [at] netflint.net',
85 url = 'http://code.google.com/p/sleekxmpp',
86 license = 'MIT',
87 platforms = [ 'any' ],
88 packages = packages,
89 requires = [ 'tlslite', 'pythondns' ],