vm-tool 0.1__tar.gz → 0.2__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.
@@ -1,6 +1,10 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: vm_tool
3
- Version: 0.1
3
+ Version: 0.2
4
+ Summary: This is a tool to setup VMs using Ansible.
5
+ License: MIT
4
6
  Requires-Dist: ansible
5
7
  Requires-Dist: ansible-runner
8
+ Dynamic: license
6
9
  Dynamic: requires-dist
10
+ Dynamic: summary
vm_tool-0.2/setup.py ADDED
@@ -0,0 +1,31 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='vm_tool',
5
+ version='0.2',
6
+ packages=find_packages(),
7
+ description='''
8
+ This is a tool to setup VMs using Ansible.
9
+
10
+ Example usage:
11
+
12
+ from vm_tool import SetupRunner
13
+
14
+ runner = SetupRunner(
15
+ ssh_host='your_host', # e.g. 192.168.1.1
16
+ ssh_user='your_user', # e.g. root
17
+ ssh_password='your_password', # e.g. password
18
+ become_pass='your_become_pass', # e.g. password
19
+ github_username='your_github_username', # e.g. username
20
+ github_token='your_github_token', # e.g. token
21
+ github_project_url='your_github_project_url' # e.g. https://github.com/username/repo
22
+ )
23
+
24
+ runner.run_setup()
25
+ ''',
26
+ install_requires=[
27
+ 'ansible',
28
+ 'ansible-runner',
29
+ ],
30
+ license='MIT',
31
+ )
@@ -1,6 +1,10 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: vm_tool
3
- Version: 0.1
3
+ Version: 0.2
4
+ Summary: This is a tool to setup VMs using Ansible.
5
+ License: MIT
4
6
  Requires-Dist: ansible
5
7
  Requires-Dist: ansible-runner
8
+ Dynamic: license
6
9
  Dynamic: requires-dist
10
+ Dynamic: summary
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
- )
File without changes
File without changes
File without changes