tf-glue 0.1.dev0__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.
tf_glue/__init__.py ADDED
@@ -0,0 +1,15 @@
1
+ """
2
+ Orchestrate OpenTofu or Terraform initialization and interactions with Ansible and Incus.
3
+ """
4
+
5
+ from __future__ import annotations
6
+
7
+ __prog__ = "tf-glue"
8
+
9
+ __version__: str
10
+ __version_tuple__: tuple
11
+ try:
12
+ from tf_glue._version import __version__, __version_tuple__ # pyright: ignore[reportMissingImports]
13
+ except ModuleNotFoundError:
14
+ __version__ = ""
15
+ __version_tuple__ = ()
tf_glue/__main__.py ADDED
@@ -0,0 +1,6 @@
1
+ def main():
2
+ print("Work in progress")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
tf_glue/_version.py ADDED
@@ -0,0 +1,24 @@
1
+ # file generated by vcs-versioning
2
+ # don't change, don't track in version control
3
+ from __future__ import annotations
4
+
5
+ __all__ = [
6
+ "__version__",
7
+ "__version_tuple__",
8
+ "version",
9
+ "version_tuple",
10
+ "__commit_id__",
11
+ "commit_id",
12
+ ]
13
+
14
+ version: str
15
+ __version__: str
16
+ __version_tuple__: tuple[int | str, ...]
17
+ version_tuple: tuple[int | str, ...]
18
+ commit_id: str | None
19
+ __commit_id__: str | None
20
+
21
+ __version__ = version = '0.1.dev0'
22
+ __version_tuple__ = version_tuple = (0, 1, 'dev0')
23
+
24
+ __commit_id__ = commit_id = 'g14b2a8151'
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: tf-glue
3
+ Version: 0.1.dev0
4
+ Summary: Orchestrate OpenTofu or Terraform initialization and interactions with Ansible and Incus.
5
+ Author-email: Sébastien Hocquet <seb@ipamo.net>
6
+ Project-URL: Homepage, https://codeberg.org/ipamo/tf-glue
7
+ Project-URL: Bug Tracker, https://codeberg.org/ipamo/tf-glue/issues
8
+ Keywords: tofu,opentofu,terraform,ansible,incus,bootstrap,infra,devops
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE.txt
15
+ Dynamic: license-file
16
+
17
+ TF glue
18
+ =======
19
+
20
+ Orchestrate OpenTofu or Terraform initialization and interactions with Ansible and Incus.
21
+
22
+ **Work in progress.**
@@ -0,0 +1,9 @@
1
+ tf_glue/__init__.py,sha256=LMwJDSJb1dbvMYzZ5Gu0jpMhHlulRoEnXy1K8Y1k7WM,385
2
+ tf_glue/__main__.py,sha256=BOhc4ceU5M-o7yTtB-WbPBy-PmnhY40M0UidDiRzIk0,82
3
+ tf_glue/_version.py,sha256=QEg4XaDTMV9TjjUIJHoMydk8QSaVgJxcellq3eZeNB8,536
4
+ tf_glue-0.1.dev0.dist-info/licenses/LICENSE.txt,sha256=ginBztPmqxVoIf8rGfHjp920KzBSkkO0lFCIWjh2lU4,1074
5
+ tf_glue-0.1.dev0.dist-info/METADATA,sha256=WuiMpgxBhZtA2VGkhtDycjt4at-Y0uX69ZweXskdCzs,811
6
+ tf_glue-0.1.dev0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
7
+ tf_glue-0.1.dev0.dist-info/entry_points.txt,sha256=2TJJFcLCQMstfCjtCYHnRqDvypDboBcedJHFHf6mJkQ,50
8
+ tf_glue-0.1.dev0.dist-info/top_level.txt,sha256=5Eg0dRq9xP7IiRGN99FbIajB9_aR499-0ZLdwGCp7ps,8
9
+ tf_glue-0.1.dev0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ tf-glue = tf_glue.__main__:main
@@ -0,0 +1,19 @@
1
+ Copyright 2026 Sébastien Hocquet <seb@ipamo.net>
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ tf_glue