2018-06-04 18:04:56 -04:00
|
|
|
from setuptools import setup
|
2016-02-01 01:33:17 -05:00
|
|
|
from setuptools import find_packages
|
|
|
|
|
|
2018-12-05 13:57:46 -05:00
|
|
|
version = '0.30.0.dev0'
|
2016-02-01 01:33:17 -05:00
|
|
|
|
2018-03-05 12:50:19 -05:00
|
|
|
# Remember to update local-oldest-requirements.txt when changing the minimum
|
|
|
|
|
# acme/certbot version.
|
2016-02-01 01:33:17 -05:00
|
|
|
install_requires = [
|
2018-06-28 13:55:21 -04:00
|
|
|
'acme>=0.25.0',
|
2018-03-05 12:50:19 -05:00
|
|
|
'certbot>=0.21.1',
|
2016-10-04 09:20:12 -04:00
|
|
|
'boto3',
|
2017-05-26 17:44:05 -04:00
|
|
|
'mock',
|
2018-02-23 16:26:11 -05:00
|
|
|
'setuptools',
|
2017-05-26 17:44:05 -04:00
|
|
|
'zope.interface',
|
2016-02-01 01:33:17 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
setup(
|
2017-06-06 18:41:04 -04:00
|
|
|
name='certbot-dns-route53',
|
2016-02-01 01:33:17 -05:00
|
|
|
version=version,
|
2017-05-26 17:44:05 -04:00
|
|
|
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',
|
2018-02-16 19:20:45 -05:00
|
|
|
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
|
2016-02-01 01:33:17 -05:00
|
|
|
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',
|
2017-05-26 17:44:05 -04:00
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2018-07-09 12:17:03 -04:00
|
|
|
'Programming Language :: Python :: 3.7',
|
2016-02-01 01:33:17 -05:00
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
|
'Topic :: Security',
|
|
|
|
|
'Topic :: System :: Installation/Setup',
|
|
|
|
|
'Topic :: System :: Networking',
|
|
|
|
|
'Topic :: System :: Systems Administration',
|
|
|
|
|
'Topic :: Utilities',
|
|
|
|
|
],
|
|
|
|
|
packages=find_packages(),
|
2017-05-26 17:44:05 -04:00
|
|
|
include_package_data=True,
|
2016-02-01 01:33:17 -05:00
|
|
|
install_requires=install_requires,
|
2016-10-04 09:20:12 -04:00
|
|
|
keywords=['certbot', 'route53', 'aws'],
|
2016-02-01 01:33:17 -05:00
|
|
|
entry_points={
|
2016-10-04 09:20:12 -04:00
|
|
|
'certbot.plugins': [
|
2017-06-06 18:41:04 -04:00
|
|
|
'dns-route53 = certbot_dns_route53.dns_route53:Authenticator',
|
2017-06-07 18:16:52 -04:00
|
|
|
'certbot-route53:auth = certbot_dns_route53.authenticator:Authenticator'
|
2016-02-01 01:33:17 -05:00
|
|
|
],
|
|
|
|
|
},
|
2017-06-06 18:41:04 -04:00
|
|
|
test_suite='certbot_dns_route53',
|
2016-02-01 01:33:17 -05:00
|
|
|
)
|