Codebase list python-certbot-dns-dnsimple / 16c5c47
Merge tag 'upstream/0.28.0' Upstream version 0.28.0 Harlan Lieberman-Berg 5 years ago
4 changed file(s) with 7 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
00 Metadata-Version: 2.1
11 Name: certbot-dns-dnsimple
2 Version: 0.23.0
2 Version: 0.28.0
33 Summary: DNSimple DNS Authenticator plugin for Certbot
44 Home-page: https://github.com/certbot/certbot
55 Author: Certbot Project
1919 Classifier: Programming Language :: Python :: 3.4
2020 Classifier: Programming Language :: Python :: 3.5
2121 Classifier: Programming Language :: Python :: 3.6
22 Classifier: Programming Language :: Python :: 3.7
2223 Classifier: Topic :: Internet :: WWW/HTTP
2324 Classifier: Topic :: Security
2425 Classifier: Topic :: System :: Installation/Setup
6565 super(_DNSimpleLexiconClient, self).__init__()
6666
6767 self.provider = dnsimple.Provider({
68 'provider_name': 'dnssimple',
6869 'auth_token': token,
6970 'ttl': ttl,
7071 })
00 Metadata-Version: 2.1
11 Name: certbot-dns-dnsimple
2 Version: 0.23.0
2 Version: 0.28.0
33 Summary: DNSimple DNS Authenticator plugin for Certbot
44 Home-page: https://github.com/certbot/certbot
55 Author: Certbot Project
1919 Classifier: Programming Language :: Python :: 3.4
2020 Classifier: Programming Language :: Python :: 3.5
2121 Classifier: Programming Language :: Python :: 3.6
22 Classifier: Programming Language :: Python :: 3.7
2223 Classifier: Topic :: Internet :: WWW/HTTP
2324 Classifier: Topic :: Security
2425 Classifier: Topic :: System :: Installation/Setup
0 import sys
1
20 from setuptools import setup
31 from setuptools import find_packages
42
53
6 version = '0.23.0'
4 version = '0.28.0'
75
86 # Remember to update local-oldest-requirements.txt when changing the minimum
97 # acme/certbot version.
4341 'Programming Language :: Python :: 3.4',
4442 'Programming Language :: Python :: 3.5',
4543 'Programming Language :: Python :: 3.6',
44 'Programming Language :: Python :: 3.7',
4645 'Topic :: Internet :: WWW/HTTP',
4746 'Topic :: Security',
4847 'Topic :: System :: Installation/Setup',