Codebase list python-certbot-dns-dnsimple / fresh-releases/main
New upstream release. Debian Janitor 2 years ago
6 changed file(s) with 15 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
00 Metadata-Version: 2.1
11 Name: certbot-dns-dnsimple
2 Version: 1.18.0
2 Version: 1.22.0
33 Summary: DNSimple DNS Authenticator plugin for Certbot
44 Home-page: https://github.com/certbot/certbot
55 Author: Certbot Project
1717 Classifier: Programming Language :: Python :: 3.7
1818 Classifier: Programming Language :: Python :: 3.8
1919 Classifier: Programming Language :: Python :: 3.9
20 Classifier: Programming Language :: Python :: 3.10
2021 Classifier: Topic :: Internet :: WWW/HTTP
2122 Classifier: Topic :: Security
2223 Classifier: Topic :: System :: Installation/Setup
00 Metadata-Version: 2.1
11 Name: certbot-dns-dnsimple
2 Version: 1.18.0
2 Version: 1.22.0
33 Summary: DNSimple DNS Authenticator plugin for Certbot
44 Home-page: https://github.com/certbot/certbot
55 Author: Certbot Project
1717 Classifier: Programming Language :: Python :: 3.7
1818 Classifier: Programming Language :: Python :: 3.8
1919 Classifier: Programming Language :: Python :: 3.9
20 Classifier: Programming Language :: Python :: 3.10
2021 Classifier: Topic :: Internet :: WWW/HTTP
2122 Classifier: Topic :: Security
2223 Classifier: Topic :: System :: Installation/Setup
00 dns-lexicon>=3.2.1
11 setuptools>=39.0.1
2 zope.interface
3 acme>=1.18.0
4 certbot>=1.18.0
2 acme>=1.22.0
3 certbot>=1.22.0
54
65 [docs]
76 Sphinx>=1.0
0 python-certbot-dns-dnsimple (1.22.0-1) UNRELEASED; urgency=low
1
2 * New upstream release.
3
4 -- Debian Janitor <janitor@jelmer.uk> Sun, 30 Jan 2022 00:28:11 -0000
5
06 python-certbot-dns-dnsimple (1.18.0-1) unstable; urgency=medium
17
28 [ Debian Janitor ]
176176 intersphinx_mapping = {
177177 'python': ('https://docs.python.org/', None),
178178 'acme': ('https://acme-python.readthedocs.org/en/latest/', None),
179 'certbot': ('https://certbot.eff.org/docs/', None),
179 'certbot': ('https://eff-certbot.readthedocs.io/en/stable/', None),
180180 }
33 from setuptools import find_packages
44 from setuptools import setup
55
6 version = '1.18.0'
6 version = '1.22.0'
77
88 install_requires = [
99 # This version of lexicon is required to address the problem described in
1010 # https://github.com/AnalogJ/lexicon/issues/387.
1111 'dns-lexicon>=3.2.1',
1212 'setuptools>=39.0.1',
13 'zope.interface',
1413 ]
1514
1615 if not os.environ.get('SNAP_BUILD'):
5352 'Programming Language :: Python :: 3.7',
5453 'Programming Language :: Python :: 3.8',
5554 'Programming Language :: Python :: 3.9',
55 'Programming Language :: Python :: 3.10',
5656 'Topic :: Internet :: WWW/HTTP',
5757 'Topic :: Security',
5858 'Topic :: System :: Installation/Setup',