New upstream version 0.31.0
Harlan Lieberman-Berg
4 years ago
0 | 0 |
Metadata-Version: 2.1
|
1 | 1 |
Name: certbot-dns-rfc2136
|
2 | |
Version: 0.24.0
|
|
2 |
Version: 0.31.0
|
3 | 3 |
Summary: RFC 2136 DNS Authenticator plugin for Certbot
|
4 | 4 |
Home-page: https://github.com/certbot/certbot
|
5 | 5 |
Author: Certbot Project
|
|
19 | 19 |
Classifier: Programming Language :: Python :: 3.4
|
20 | 20 |
Classifier: Programming Language :: Python :: 3.5
|
21 | 21 |
Classifier: Programming Language :: Python :: 3.6
|
|
22 |
Classifier: Programming Language :: Python :: 3.7
|
22 | 23 |
Classifier: Topic :: Internet :: WWW/HTTP
|
23 | 24 |
Classifier: Topic :: Security
|
24 | 25 |
Classifier: Topic :: System :: Installation/Setup
|
0 | 0 |
Metadata-Version: 2.1
|
1 | 1 |
Name: certbot-dns-rfc2136
|
2 | |
Version: 0.24.0
|
|
2 |
Version: 0.31.0
|
3 | 3 |
Summary: RFC 2136 DNS Authenticator plugin for Certbot
|
4 | 4 |
Home-page: https://github.com/certbot/certbot
|
5 | 5 |
Author: Certbot Project
|
|
19 | 19 |
Classifier: Programming Language :: Python :: 3.4
|
20 | 20 |
Classifier: Programming Language :: Python :: 3.5
|
21 | 21 |
Classifier: Programming Language :: Python :: 3.6
|
|
22 |
Classifier: Programming Language :: Python :: 3.7
|
22 | 23 |
Classifier: Topic :: Internet :: WWW/HTTP
|
23 | 24 |
Classifier: Topic :: Security
|
24 | 25 |
Classifier: Topic :: System :: Installation/Setup
|
0 | |
import sys
|
1 | |
|
2 | 0 |
from setuptools import setup
|
3 | 1 |
from setuptools import find_packages
|
4 | 2 |
|
5 | 3 |
|
6 | |
version = '0.24.0'
|
|
4 |
version = '0.31.0'
|
7 | 5 |
|
8 | 6 |
# Remember to update local-oldest-requirements.txt when changing the minimum
|
9 | 7 |
# acme/certbot version.
|
|
43 | 41 |
'Programming Language :: Python :: 3.4',
|
44 | 42 |
'Programming Language :: Python :: 3.5',
|
45 | 43 |
'Programming Language :: Python :: 3.6',
|
|
44 |
'Programming Language :: Python :: 3.7',
|
46 | 45 |
'Topic :: Internet :: WWW/HTTP',
|
47 | 46 |
'Topic :: Security',
|
48 | 47 |
'Topic :: System :: Installation/Setup',
|