mirror of https://github.com/celery/kombu.git
69 lines
1.6 KiB
Python
69 lines
1.6 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
try:
|
|
from setuptools import setup
|
|
from setuptools.command.install import install
|
|
except ImportError:
|
|
from ez_setup import use_setuptools
|
|
use_setuptools()
|
|
from setuptools import setup
|
|
from setuptools.command.install import install
|
|
|
|
|
|
class no_install(install):
|
|
|
|
def run(self, *args, **kwargs):
|
|
import sys
|
|
sys.stderr.write("""
|
|
----------------------------------------------------
|
|
The Kombu functional test suite cannot be installed.
|
|
----------------------------------------------------
|
|
|
|
|
|
But you can execute the tests by running the command:
|
|
|
|
$ python setup.py test
|
|
|
|
|
|
""")
|
|
|
|
|
|
setup(
|
|
name='kombu-funtests',
|
|
version="DEV",
|
|
description="Functional test suite for Kombu",
|
|
author="Ask Solem",
|
|
author_email="ask@celeryproject.org",
|
|
url="http://github.com/ask/kombu",
|
|
platforms=["any"],
|
|
packages=[],
|
|
data_files=[],
|
|
zip_safe=False,
|
|
cmdclass={"install": no_install},
|
|
test_suite="nose.collector",
|
|
build_requires=[
|
|
"nose",
|
|
"nose-cover3",
|
|
"unittest2",
|
|
"coverage>=3.0",
|
|
"simplejson",
|
|
"PyYAML",
|
|
"msgpack-python",
|
|
"pymongo",
|
|
"couchdb",
|
|
"pika",
|
|
"beanstalkc",
|
|
"kombu-sqlalchemy",
|
|
"django",
|
|
"django-kombu",
|
|
],
|
|
classifiers=[
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
"License :: OSI Approved :: BSD License",
|
|
"Intended Audience :: Developers",
|
|
],
|
|
long_description="Do not install this package",
|
|
)
|