Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial extension for storage preview #138

Merged
merged 6 commits into from
Apr 16, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
addressed feedback
  • Loading branch information
williexu committed Apr 16, 2018
commit ed3f2fe6db79ecd72af61d87656b2d3e04bd0409
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"azext.minCliCoreVersion": "2.0.32.dev0",
"azext.minCliCoreVersion": "2.0.31",
"azext.isPreview": true
}
10 changes: 5 additions & 5 deletions src/storage-preview/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@
setup(
name='storage-preview',
version=VERSION,
description='An Azure CLI Extension for storage preview features.',
long_description='An Azure CLI Extension for storage preview features.',
description='Provides a preview for upcoming storage features.',
long_description='An Azure CLI Extension for storage preview features. This will replace the full storage module.',
license='MIT',
author='Willie Xu',
author_email='wilx@microsoft.com',
author='Microsoft Corporation',
author_email='azpycli@microsoft.com',
url='https://github.com/Azure/azure-cli-extensions',
classifiers=CLASSIFIERS,
package_data={'azext_storage_preview': ['azext_metadata.json']},
packages=find_packages(),
packages=find_packages(exclude=["azext_storage_preview.tests"]),
install_requires=DEPENDENCIES
)