Skip to content

Commit

Permalink
[vm-repair] add azext_metadata.json (#1845)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jianhui Harold authored Jun 8, 2020
1 parent 6a17c10 commit 179353d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/vm-repair/azext_vm_repair/azext_metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"azext.isPreview": false,
"azext.minCliCoreVersion": "2.0.67"
}
11 changes: 9 additions & 2 deletions src/vm-repair/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from codecs import open
from setuptools import setup, find_packages

VERSION = "0.3.0"
VERSION = "0.3.1"

CLASSIFIERS = [
'Development Status :: 4 - Beta',
Expand Down Expand Up @@ -37,6 +37,13 @@
url='https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair',
classifiers=CLASSIFIERS,
packages=find_packages(),
package_data={'azext_vm_repair': ['scripts/linux-run-driver.sh', 'scripts/win-run-driver.ps1', 'scripts/mount-encrypted-disk.sh']},
package_data={
'azext_vm_repair': [
'scripts/linux-run-driver.sh',
'scripts/win-run-driver.ps1',
'scripts/mount-encrypted-disk.sh',
'azext_metadata.json'
]
},
install_requires=DEPENDENCIES
)

0 comments on commit 179353d

Please sign in to comment.