mirror of
https://github.com/certbot/certbot.git
synced 2026-06-05 06:42:10 -04:00
* Limit transitive dependency on urllib3 to <1.25 to fulfill requirements in certbot-dns-route53 throught botocore dependency.
63 lines
2.3 KiB
Python
63 lines
2.3 KiB
Python
from setuptools import setup
|
|
from setuptools import find_packages
|
|
|
|
version = '0.35.0.dev0'
|
|
|
|
# Remember to update local-oldest-requirements.txt when changing the minimum
|
|
# acme/certbot version.
|
|
install_requires = [
|
|
# boto3 requires urllib<1.25 while requests 2.22+ requires urllib<1.26
|
|
# Since pip lacks a real dependency graph resolver, it will peak the constraint only from
|
|
# requests, and install urllib==1.25.2. Setting an explicit dependency here solves the issue.
|
|
# Check https://github.com/boto/botocore/issues/1733 for resolution in botocore.
|
|
'urllib3<1.25',
|
|
'acme>=0.29.0',
|
|
'certbot>=0.34.0',
|
|
'boto3',
|
|
'mock',
|
|
'setuptools',
|
|
'zope.interface',
|
|
]
|
|
|
|
setup(
|
|
name='certbot-dns-route53',
|
|
version=version,
|
|
description="Route53 DNS Authenticator plugin for Certbot",
|
|
url='https://github.com/certbot/certbot',
|
|
author="Certbot Project",
|
|
author_email='client-dev@letsencrypt.org',
|
|
license='Apache License 2.0',
|
|
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Environment :: Plugins',
|
|
'Intended Audience :: System Administrators',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Operating System :: POSIX :: Linux',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
'Topic :: Security',
|
|
'Topic :: System :: Installation/Setup',
|
|
'Topic :: System :: Networking',
|
|
'Topic :: System :: Systems Administration',
|
|
'Topic :: Utilities',
|
|
],
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
install_requires=install_requires,
|
|
keywords=['certbot', 'route53', 'aws'],
|
|
entry_points={
|
|
'certbot.plugins': [
|
|
'dns-route53 = certbot_dns_route53.dns_route53:Authenticator',
|
|
'certbot-route53:auth = certbot_dns_route53.authenticator:Authenticator'
|
|
],
|
|
},
|
|
test_suite='certbot_dns_route53',
|
|
)
|