charmlibs-interfaces-tls-certificates 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of charmlibs-interfaces-tls-certificates might be problematic. Click here for more details.
- charmlibs/interfaces/tls_certificates/__init__.py +69 -0
- charmlibs/interfaces/tls_certificates/_tls_certificates.py +1981 -0
- charmlibs/interfaces/tls_certificates/_version.py +15 -0
- charmlibs/interfaces/tls_certificates/py.typed +0 -0
- charmlibs_interfaces_tls_certificates-1.0.0.dist-info/METADATA +29 -0
- charmlibs_interfaces_tls_certificates-1.0.0.dist-info/RECORD +7 -0
- charmlibs_interfaces_tls_certificates-1.0.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Copyright 2025 Canonical Ltd.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
__version__ = "1.0.0"
|
|
File without changes
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: charmlibs-interfaces-tls_certificates
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: The charmlibs.interfaces.tls_certificates package.
|
|
5
|
+
Project-URL: Repository, https://github.com/canonical/charmlibs
|
|
6
|
+
Project-URL: Issues, https://github.com/canonical/charmlibs/issues
|
|
7
|
+
Author: The TLS team at Canonical
|
|
8
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Requires-Dist: cryptography>=43.0.0
|
|
15
|
+
Requires-Dist: ops
|
|
16
|
+
Requires-Dist: pydantic
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# charmlibs-interfaces-tls_certificates
|
|
20
|
+
|
|
21
|
+
The `tls_certificates` interface library.
|
|
22
|
+
|
|
23
|
+
To install, add `charmlibs-interfaces-tls_certificates` to your Python dependencies. Then in your Python code, import as:
|
|
24
|
+
|
|
25
|
+
```py
|
|
26
|
+
from charmlibs.interfaces import tls_certificates
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
See the [reference documentation](https://documentation.ubuntu.com/charmlibs/reference/charmlibs/interfaces/tls_certificates), and read the [docs](https://charmhub.io/tls-certificates-interface/libraries/tls_certificates).
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
charmlibs/interfaces/tls_certificates/__init__.py,sha256=33sYmxj5ZR9i8V52Vi85pV2TkbN9a9IQoMhfnHXIdxg,2112
|
|
2
|
+
charmlibs/interfaces/tls_certificates/_tls_certificates.py,sha256=uxZPiEj9Tzh3sAUEzdOr23NJzn9Hvm_k0shkq2Wk8cs,81751
|
|
3
|
+
charmlibs/interfaces/tls_certificates/_version.py,sha256=UsreGteO9bnCPWrOYmyZ88Xzb6KnL9gU70a7Ct_iM9g,597
|
|
4
|
+
charmlibs/interfaces/tls_certificates/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
charmlibs_interfaces_tls_certificates-1.0.0.dist-info/METADATA,sha256=qBjV9m4ng8RMRs0il0SBL8j-ouy3vZRhK-2WcaoMk7Y,1199
|
|
6
|
+
charmlibs_interfaces_tls_certificates-1.0.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
+
charmlibs_interfaces_tls_certificates-1.0.0.dist-info/RECORD,,
|