diff options
| author | Asif Saif Uddin <auvipy@gmail.com> | 2023-04-08 22:45:08 +0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-08 22:45:08 +0600 |
| commit | 973dc3790ac25b9da7b6d2641ac72d95470f6ed8 (patch) | |
| tree | 9e7ba02d8520994a06efc37dde05fba722138189 /setup.py | |
| parent | 7ceb675bb69917fae182ebdaf9a2298a308c3fa4 (diff) | |
| parent | 2de7f9f038dd62e097e490cb3fa609067c1c3c36 (diff) | |
| download | kombu-py310.tar.gz | |
Merge branch 'main' into py310py310
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -1,8 +1,9 @@ #!/usr/bin/env python3 +from __future__ import annotations + import os import re import sys -from distutils.command.install import INSTALL_SCHEMES import setuptools import setuptools.command.test @@ -56,9 +57,6 @@ def fullsplit(path, result=None): return fullsplit(head, [tail] + result) -for scheme in list(INSTALL_SCHEMES.values()): - scheme['data'] = scheme['purelib'] - # if os.path.exists('README.rst'): # long_description = codecs.open('README.rst', 'r', 'utf-8').read() # else: @@ -108,9 +106,12 @@ setup( author=meta['author'], author_email=meta['contact'], url=meta['homepage'], + project_urls={ + 'Source': 'https://github.com/celery/kombu' + }, platforms=['any'], zip_safe=False, - license='BSD', + license='BSD-3-Clause', cmdclass={'test': pytest}, python_requires=">=3.7", install_requires=reqs('default.txt'), @@ -130,6 +131,7 @@ setup( 'azureservicebus': extras('azureservicebus.txt'), 'qpid': extras('qpid.txt'), 'consul': extras('consul.txt'), + 'confluentkafka': extras('confluentkafka.txt'), }, classifiers=[ 'Development Status :: 5 - Production/Stable', |
