diff --git a/certbot-route53/setup.py b/certbot-route53/setup.py index 49b1ea467..40a104a40 100644 --- a/certbot-route53/setup.py +++ b/certbot-route53/setup.py @@ -3,23 +3,27 @@ import sys from distutils.core import setup from setuptools import find_packages -version = '0.1.5' +version = '0.15.0.dev0' install_requires = [ - 'acme>=0.9.0', - 'certbot>=0.9.0', - 'zope.interface', + 'acme=={0}'.format(version), + 'certbot=={0}'.format(version), 'boto3', + 'mock', + # For pkg_resources. >=1.0 so pip resolves it to a version cryptography + # will tolerate; see #2599: + 'setuptools>=1.0', + 'zope.interface', ] setup( name='certbot-route53', version=version, - description="Route53 plugin for certbot", - url='https://github.com/lifeonmarspt/certbot-route53', - author="Hugo Peixoto", - author_email='hugo@lifeonmars.pt', - license='Apache2.0', + 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', classifiers=[ 'Development Status :: 3 - Alpha', 'Environment :: Plugins', @@ -28,7 +32,13 @@ setup( 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Security', 'Topic :: System :: Installation/Setup', @@ -37,6 +47,7 @@ setup( 'Topic :: Utilities', ], packages=find_packages(), + include_package_data=True, install_requires=install_requires, keywords=['certbot', 'route53', 'aws'], entry_points={ @@ -44,4 +55,5 @@ setup( 'auth = certbot_route53.authenticator:Authenticator' ], }, + test_suite='certbot_route53', )