kombu/setup.py

106 lines
3.0 KiB
Python
Raw Normal View History

2010-06-23 10:08:39 +00:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
2010-06-29 15:31:56 +00:00
import sys
2010-06-23 10:08:39 +00:00
import codecs
2010-12-02 14:32:26 +00:00
extra = {}
2010-12-03 13:22:04 +00:00
tests_require = ["nose", "nose-cover3"]
2010-12-02 14:32:26 +00:00
if sys.version_info >= (3, 0):
extra.update(use_2to3=True)
2010-12-03 10:14:56 +00:00
elif sys.version_info <= (2, 6):
tests_require.append("unittest2")
elif sys.version_info <= (2, 5):
tests_require.append("simplejson")
2010-12-02 14:32:26 +00:00
if sys.version_info < (2, 4):
raise Exception("Kombu requires Python 2.4 or higher.")
2010-06-23 10:08:39 +00:00
try:
from setuptools import setup
2010-06-23 10:08:39 +00:00
except ImportError:
from distutils.core import setup # noqa
2010-06-23 10:08:39 +00:00
from distutils.command.install import INSTALL_SCHEMES
2010-06-29 15:31:56 +00:00
os.environ["KOMBU_NO_EVAL"] = "yes"
2010-06-23 10:08:39 +00:00
import kombu
2010-06-29 15:31:56 +00:00
os.environ.pop("KOMBU_NO_EVAL", None)
sys.modules.pop("kombu", None)
2010-06-23 10:08:39 +00:00
packages, data_files = [], []
root_dir = os.path.dirname(__file__)
if root_dir != '':
os.chdir(root_dir)
src_dir = "kombu"
def fullsplit(path, result=None):
if result is None:
result = []
head, tail = os.path.split(path)
if head == '':
return [tail] + result
if head == path:
return result
return fullsplit(head, [tail] + result)
2010-12-02 14:32:26 +00:00
for scheme in list(INSTALL_SCHEMES.values()):
2010-06-23 10:08:39 +00:00
scheme['data'] = scheme['purelib']
for dirpath, dirnames, filenames in os.walk(src_dir):
# Ignore dirnames that start with '.'
for i, dirname in enumerate(dirnames):
if dirname.startswith("."):
del dirnames[i]
for filename in filenames:
if filename.endswith(".py"):
packages.append('.'.join(fullsplit(dirpath)))
else:
data_files.append([dirpath, [os.path.join(dirpath, f) for f in
filenames]])
if os.path.exists("README.rst"):
long_description = codecs.open('README.rst', "r", "utf-8").read()
else:
long_description = "See http://pypi.python.org/pypi/kombu"
setup(
name='kombu',
version=kombu.__version__,
description=kombu.__doc__,
author=kombu.__author__,
author_email=kombu.__contact__,
url=kombu.__homepage__,
platforms=["any"],
packages=packages,
data_files=data_files,
zip_safe=False,
test_suite="nose.collector",
install_requires=[
'anyjson>=0.3.1',
2011-07-28 10:46:59 +00:00
'amqplib>=1.0',
2010-06-23 10:08:39 +00:00
],
2010-12-03 10:14:56 +00:00
tests_require=tests_require,
2010-06-23 10:08:39 +00:00
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
2010-06-23 10:08:39 +00:00
"Operating System :: OS Independent",
"Programming Language :: Python",
2010-12-02 14:32:26 +00:00
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.4",
"Programming Language :: Python :: 2",
2010-06-23 10:08:39 +00:00
"Intended Audience :: Developers",
"Topic :: Communications",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Networking",
2010-06-23 10:08:39 +00:00
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description=long_description,
**extra)