vm-tool 1.0.8__tar.gz → 1.0.9__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-1.0.8/vm_tool.egg-info → vm_tool-1.0.9}/PKG-INFO +1 -1
- {vm_tool-1.0.8 → vm_tool-1.0.9}/setup.py +7 -3
- {vm_tool-1.0.8 → vm_tool-1.0.9}/vm_tool/cli.py +1 -1
- {vm_tool-1.0.8 → vm_tool-1.0.9/vm_tool.egg-info}/PKG-INFO +1 -1
- {vm_tool-1.0.8 → vm_tool-1.0.9}/LICENSE +0 -0
- {vm_tool-1.0.8 → vm_tool-1.0.9}/setup.cfg +0 -0
- {vm_tool-1.0.8 → vm_tool-1.0.9}/vm_tool/__init__.py +0 -0
- {vm_tool-1.0.8 → vm_tool-1.0.9}/vm_tool/runner.py +0 -0
- {vm_tool-1.0.8 → vm_tool-1.0.9}/vm_tool/ssh.py +0 -0
- {vm_tool-1.0.8 → vm_tool-1.0.9}/vm_tool.egg-info/SOURCES.txt +0 -0
- {vm_tool-1.0.8 → vm_tool-1.0.9}/vm_tool.egg-info/dependency_links.txt +0 -0
- {vm_tool-1.0.8 → vm_tool-1.0.9}/vm_tool.egg-info/entry_points.txt +0 -0
- {vm_tool-1.0.8 → vm_tool-1.0.9}/vm_tool.egg-info/requires.txt +0 -0
- {vm_tool-1.0.8 → vm_tool-1.0.9}/vm_tool.egg-info/top_level.txt +0 -0
|
@@ -2,12 +2,16 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
import os
|
|
3
3
|
|
|
4
4
|
# Read the contents of README.md
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
readme_path = os.path.join(os.path.dirname(__file__), 'Readme.md')
|
|
6
|
+
if os.path.exists(readme_path):
|
|
7
|
+
with open(readme_path, encoding='utf-8') as f:
|
|
8
|
+
long_description = f.read()
|
|
9
|
+
else:
|
|
10
|
+
long_description = ''
|
|
7
11
|
|
|
8
12
|
setup(
|
|
9
13
|
name='vm_tool',
|
|
10
|
-
version='1.0.
|
|
14
|
+
version='1.0.9', # This will be updated by bump2version
|
|
11
15
|
packages=find_packages(),
|
|
12
16
|
description='A Comprehensive Tool for Setting Up Virtual Machines Using Ansible.',
|
|
13
17
|
long_description=long_description,
|
|
@@ -2,7 +2,7 @@ import argparse
|
|
|
2
2
|
|
|
3
3
|
def main():
|
|
4
4
|
parser = argparse.ArgumentParser(description='Setup VMs using Ansible.')
|
|
5
|
-
parser.add_argument('--version', action='version', version='1.0.
|
|
5
|
+
parser.add_argument('--version', action='version', version='1.0.9')
|
|
6
6
|
|
|
7
7
|
args = parser.parse_args()
|
|
8
8
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|