kombu/setup.py

160 lines
4.4 KiB
Python
Raw Normal View History

2010-06-23 10:08:39 +00:00
#!/usr/bin/env python
import os
2015-10-03 01:00:30 +00:00
import re
2010-06-29 15:31:56 +00:00
import sys
2010-06-23 10:08:39 +00:00
import setuptools
import setuptools.command.test
2015-10-03 01:00:30 +00:00
from distutils.command.install import INSTALL_SCHEMES
2014-05-19 21:27:36 +00:00
if sys.version_info < (2, 7):
2015-10-20 21:05:09 +00:00
raise Exception('Kombu 4.0 requires Python 2.7 or higher.')
2010-12-02 14:32:26 +00:00
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
# -- Parse meta
re_meta = re.compile(r'__(\w+?)__\s*=\s*(.*)')
re_doc = re.compile(r'^"""(.+?)"""')
2015-10-03 01:00:30 +00:00
def add_default(m):
attr_name, attr_value = m.groups()
2016-07-01 21:13:38 +00:00
return ((attr_name, attr_value.strip("\"'")),)
def add_doc(m):
return (('doc', m.groups()[0]),)
2016-07-01 21:13:38 +00:00
pats = {re_meta: add_default, re_doc: add_doc}
2011-09-26 17:11:19 +00:00
here = os.path.abspath(os.path.dirname(__file__))
meta_fh = open(os.path.join(here, 'kombu/__init__.py'))
try:
meta = {}
for line in meta_fh:
if line.strip() == '# -eof meta-':
break
for pattern, handler in pats.items():
m = pattern.match(line.strip())
if m:
meta.update(handler(m))
finally:
meta_fh.close()
# --
2010-06-23 10:08:39 +00:00
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']
2019-06-06 05:23:10 +00:00
# if os.path.exists('README.rst'):
2019-06-06 04:15:12 +00:00
# long_description = codecs.open('README.rst', 'r', 'utf-8').read()
2019-06-06 05:23:10 +00:00
# else:
2019-06-06 04:15:12 +00:00
# long_description = 'See https://pypi.org/project/kombu/'
# -*- Installation Requires -*-
py_version = sys.version_info
is_pypy = hasattr(sys, 'pypy_version_info')
def strip_comments(l):
return l.split('#', 1)[0].strip()
2013-10-02 13:43:19 +00:00
def reqs(*f):
2013-09-10 16:26:12 +00:00
return [
r for r in (
strip_comments(l) for l in open(
2013-10-02 13:43:19 +00:00
os.path.join(os.getcwd(), 'requirements', *f)).readlines()
2013-09-10 16:26:12 +00:00
) if r]
2015-10-03 01:00:30 +00:00
def extras(*p):
return reqs('extras', *p)
class pytest(setuptools.command.test.test):
user_options = [('pytest-args=', 'a', 'Arguments to pass to py.test')]
def initialize_options(self):
setuptools.command.test.test.initialize_options(self)
self.pytest_args = []
def run_tests(self):
import pytest
sys.exit(pytest.main(self.pytest_args))
def readme():
with open('README.rst') as f:
return f.read()
2010-06-23 10:08:39 +00:00
setup(
name='kombu',
packages=setuptools.find_packages(exclude=['t', 't.*']),
2016-07-01 21:13:38 +00:00
version=meta['version'],
description=meta['doc'],
2016-10-10 20:16:54 +00:00
keywords='messaging message amqp rabbitmq redis actor producer consumer',
author=meta['author'],
author_email=meta['contact'],
url=meta['homepage'],
platforms=['any'],
2010-06-23 10:08:39 +00:00
zip_safe=False,
2016-10-10 20:16:54 +00:00
license='BSD',
cmdclass={'test': pytest},
2019-05-30 11:12:32 +00:00
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
2016-04-05 21:57:00 +00:00
install_requires=reqs('default.txt'),
tests_require=reqs('test.txt'),
extras_require={
'msgpack': extras('msgpack.txt'),
'yaml': extras('yaml.txt'),
'redis': extras('redis.txt'),
'mongodb': extras('mongodb.txt'),
'sqs': extras('sqs.txt'),
'zookeeper': extras('zookeeper.txt'),
'sqlalchemy': extras('sqlalchemy.txt'),
'librabbitmq': extras('librabbitmq.txt'),
'pyro': extras('pyro.txt'),
'slmq': extras('slmq.txt'),
'azurestoragequeues': extras('azurestoragequeues.txt'),
'azureservicebus': extras('azureservicebus.txt'),
'qpid': extras('qpid.txt'),
'consul': extras('consul.txt'),
},
2010-06-23 10:08:39 +00:00
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
2016-04-05 21:57:00 +00:00
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
2018-06-28 12:44:01 +00:00
'Programming Language :: Python :: 3.7',
2019-10-29 03:25:23 +00:00
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Intended Audience :: Developers',
'Topic :: Communications',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Networking',
'Topic :: Software Development :: Libraries :: Python Modules',
2010-06-23 10:08:39 +00:00
],
2016-04-05 21:57:00 +00:00
)