kombu/setup.py

156 lines
4.2 KiB
Python
Raw Normal View History

2021-11-06 09:46:08 +00:00
#!/usr/bin/env python3
from __future__ import annotations
2010-06-23 10:08:39 +00:00
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
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
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()
2020-07-30 13:44:04 +00:00
# --
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)
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(line):
return line.split('#', 1)[0].strip()
2013-10-02 13:43:19 +00:00
def reqs(*f):
with open(os.path.join(os.getcwd(), "requirements", *f)) as reqs_file:
return [r for r in (strip_comments(line) for line in reqs_file) 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):
super().initialize_options()
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'],
2022-03-01 18:21:35 +00:00
project_urls={
'Source': 'https://github.com/celery/kombu'
},
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},
2021-09-27 18:38:44 +00:00
python_requires=">=3.7",
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'),
'confluentkafka': extras('confluentkafka.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',
2020-07-30 13:44:04 +00:00
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
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',
2021-07-30 12:54:04 +00:00
'Programming Language :: Python :: 3.9',
2021-11-06 09:46:08 +00:00
'Programming Language :: Python :: 3.10',
'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
)