slixmpp/setup.py

83 lines
2.7 KiB
Python
Raw Normal View History

2009-06-03 22:56:51 +00:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2007-2008 Nathanael C. Fritz
# All Rights Reserved
#
# This software is licensed as described in the README file,
# which you should have received as part of this distribution.
#
# from ez_setup import use_setuptools
from distutils.core import setup
import sys
import sleekxmpp
2009-06-03 22:56:51 +00:00
# if 'cygwin' in sys.platform.lower():
# min_version = '0.6c6'
# else:
# min_version = '0.6a9'
#
2009-06-03 22:56:51 +00:00
# try:
# use_setuptools(min_version=min_version)
# except TypeError:
# # locally installed ez_setup won't have min_version
# use_setuptools()
#
2009-06-03 22:56:51 +00:00
# from setuptools import setup, find_packages, Extension, Feature
VERSION = sleekxmpp.__version__
2009-06-03 22:56:51 +00:00
DESCRIPTION = 'SleekXMPP is an elegant Python library for XMPP (aka Jabber, Google Talk, etc).'
LONG_DESCRIPTION = """
SleekXMPP is an elegant Python library for XMPP (aka Jabber, Google Talk, etc).
"""
CLASSIFIERS = [ 'Intended Audience :: Developers',
2010-03-26 21:32:16 +00:00
'License :: OSI Approved :: MIT',
2009-06-03 22:56:51 +00:00
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
packages = [ 'sleekxmpp',
'sleekxmpp/stanza',
'sleekxmpp/test',
'sleekxmpp/xmlstream',
'sleekxmpp/xmlstream/matcher',
'sleekxmpp/xmlstream/handler',
2010-10-14 01:15:21 +00:00
'sleekxmpp/thirdparty',
'sleekxmpp/plugins',
2011-01-13 11:53:17 +00:00
'sleekxmpp/plugins/xep_0009',
'sleekxmpp/plugins/xep_0009/stanza',
'sleekxmpp/plugins/xep_0030',
'sleekxmpp/plugins/xep_0030/stanza',
'sleekxmpp/plugins/xep_0050',
'sleekxmpp/plugins/xep_0059',
'sleekxmpp/plugins/xep_0085',
2011-03-24 17:14:26 +00:00
'sleekxmpp/plugins/xep_0086',
'sleekxmpp/plugins/xep_0092',
'sleekxmpp/plugins/xep_0128',
'sleekxmpp/plugins/xep_0199',
2010-10-14 01:15:21 +00:00
]
if sys.version_info < (3, 0):
py_modules = ['sleekxmpp.xmlstream.tostring.tostring26']
else:
py_modules = ['sleekxmpp.xmlstream.tostring.tostring']
2009-06-03 22:56:51 +00:00
setup(
name = "sleekxmpp",
version = VERSION,
description = DESCRIPTION,
long_description = LONG_DESCRIPTION,
author = 'Nathanael Fritz',
author_email = 'fritzy [at] netflint.net',
url = 'http://code.google.com/p/sleekxmpp',
2010-03-26 21:32:16 +00:00
license = 'MIT',
2009-06-03 22:56:51 +00:00
platforms = [ 'any' ],
packages = packages,
py_modules = py_modules,
2009-06-03 22:56:51 +00:00
requires = [ 'tlslite', 'pythondns' ],
)