vm-tool 0.1__tar.gz → 0.4__tar.gz

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.
vm_tool-0.4/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 vm-tool
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
vm_tool-0.4/PKG-INFO ADDED
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.2
2
+ Name: vm_tool
3
+ Version: 0.4
4
+ Summary: A tool to setup VMs using Ansible.
5
+ License: MIT
6
+ Description-Content-Type: text/markdown
7
+ License-File: LICENSE
8
+ Requires-Dist: ansible
9
+ Requires-Dist: ansible-runner
10
+ Dynamic: description
11
+ Dynamic: description-content-type
12
+ Dynamic: license
13
+ Dynamic: requires-dist
14
+ Dynamic: summary
15
+
16
+
17
+ This is a tool to setup VMs using Ansible.
18
+
19
+ Example usage:
20
+
21
+ from vm_tool import SetupRunner
22
+
23
+ runner = SetupRunner(
24
+ ssh_host='your_host', # e.g. 192.168.1.1
25
+ ssh_user='your_user', # e.g. root
26
+ ssh_password='your_password', # e.g. password
27
+ become_pass='your_become_pass', # e.g. password
28
+ github_username='your_github_username', # e.g. username
29
+ github_token='your_github_token', # e.g. token
30
+ github_project_url='your_github_project_url' # e.g. https://github.com/username/repo
31
+ )
32
+
33
+ runner.run_setup()
34
+
vm_tool-0.4/README.md ADDED
@@ -0,0 +1,28 @@
1
+ ### Welcome to initial setup of the application
2
+
3
+ 1. Connect to deployment machine using VSCode.
4
+
5
+ 2. Run the following command to install the package and its dependencies:
6
+ ```bash
7
+ pip install .
8
+ ```
9
+
10
+ ### This is a tool to setup VMs using Ansible.
11
+
12
+ ## Example usage:
13
+
14
+ ```bash
15
+ from vm_tool import SetupRunner
16
+
17
+ runner = SetupRunner(
18
+ ssh_host='your_host', # e.g. 192.168.1.1
19
+ ssh_user='your_user', # e.g. root
20
+ ssh_password='your_password', # e.g. password
21
+ become_pass='your_become_pass', # e.g. password
22
+ github_username='your_github_username', # e.g. username
23
+ github_token='your_github_token', # e.g. token
24
+ github_project_url='your_github_project_url' # e.g. https://github.com/username/repo
25
+ )
26
+
27
+ runner.run_setup()
28
+ ```
vm_tool-0.4/setup.py ADDED
@@ -0,0 +1,33 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='vm_tool',
5
+ version='0.4',
6
+ packages=find_packages(),
7
+ description='A tool to setup VMs using Ansible.',
8
+ long_description='''
9
+ This is a tool to setup VMs using Ansible.
10
+
11
+ Example usage:
12
+
13
+ from vm_tool import SetupRunner
14
+
15
+ runner = SetupRunner(
16
+ ssh_host='your_host', # e.g. 192.168.1.1
17
+ ssh_user='your_user', # e.g. root
18
+ ssh_password='your_password', # e.g. password
19
+ become_pass='your_become_pass', # e.g. password
20
+ github_username='your_github_username', # e.g. username
21
+ github_token='your_github_token', # e.g. token
22
+ github_project_url='your_github_project_url' # e.g. https://github.com/username/repo
23
+ )
24
+
25
+ runner.run_setup()
26
+ ''',
27
+ long_description_content_type='text/markdown',
28
+ install_requires=[
29
+ 'ansible',
30
+ 'ansible-runner',
31
+ ],
32
+ license='MIT',
33
+ )
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.2
2
+ Name: vm_tool
3
+ Version: 0.4
4
+ Summary: A tool to setup VMs using Ansible.
5
+ License: MIT
6
+ Description-Content-Type: text/markdown
7
+ License-File: LICENSE
8
+ Requires-Dist: ansible
9
+ Requires-Dist: ansible-runner
10
+ Dynamic: description
11
+ Dynamic: description-content-type
12
+ Dynamic: license
13
+ Dynamic: requires-dist
14
+ Dynamic: summary
15
+
16
+
17
+ This is a tool to setup VMs using Ansible.
18
+
19
+ Example usage:
20
+
21
+ from vm_tool import SetupRunner
22
+
23
+ runner = SetupRunner(
24
+ ssh_host='your_host', # e.g. 192.168.1.1
25
+ ssh_user='your_user', # e.g. root
26
+ ssh_password='your_password', # e.g. password
27
+ become_pass='your_become_pass', # e.g. password
28
+ github_username='your_github_username', # e.g. username
29
+ github_token='your_github_token', # e.g. token
30
+ github_project_url='your_github_project_url' # e.g. https://github.com/username/repo
31
+ )
32
+
33
+ runner.run_setup()
34
+
@@ -1,3 +1,4 @@
1
+ LICENSE
1
2
  README.md
2
3
  setup.py
3
4
  vm_tool/__init__.py
vm_tool-0.1/PKG-INFO DELETED
@@ -1,6 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: vm_tool
3
- Version: 0.1
4
- Requires-Dist: ansible
5
- Requires-Dist: ansible-runner
6
- Dynamic: requires-dist
vm_tool-0.1/README.md DELETED
@@ -1,7 +0,0 @@
1
- ### Welcome to initial setup of the application
2
-
3
- 1. Connect to deployment machine using VSCode.
4
-
5
- 2. Run the following command to install the package and its dependencies:
6
- ```bash
7
- pip install .
vm_tool-0.1/setup.py DELETED
@@ -1,11 +0,0 @@
1
- from setuptools import setup, find_packages
2
-
3
- setup(
4
- name='vm_tool',
5
- version='0.1',
6
- packages=find_packages(),
7
- install_requires=[
8
- 'ansible',
9
- 'ansible-runner',
10
- ],
11
- )
@@ -1,6 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: vm_tool
3
- Version: 0.1
4
- Requires-Dist: ansible
5
- Requires-Dist: ansible-runner
6
- Dynamic: requires-dist
File without changes
File without changes