Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 5 additions & 0 deletions src/azure-cli-core/README.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
Microsoft Azure CLI Core Module
==================================

Release History
===============

See `Release History on GitHub <https://github.com/Azure/azure-cli/blob/dev/src/azure-cli-core/HISTORY.rst>`__.
4 changes: 1 addition & 3 deletions src/azure-cli-core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,12 @@

with open('README.rst', 'r', encoding='utf-8') as f:
README = f.read()
with open('HISTORY.rst', 'r', encoding='utf-8') as f:
HISTORY = f.read()

setup(
name='azure-cli-core',
version=VERSION,
description='Microsoft Azure Command-Line Tools Core Module',
long_description=README + '\n\n' + HISTORY,
long_description=README,
license='MIT',
author='Microsoft Corporation',
author_email='[email protected]',
Expand Down
5 changes: 5 additions & 0 deletions src/azure-cli/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,8 @@ License
=======

`MIT <https://github.com/Azure/azure-cli/blob/master/LICENSE.txt>`__

Release History
===============

See `Azure CLI release notes <https://docs.microsoft.com/cli/azure/release-notes-azure-cli>`__.
4 changes: 1 addition & 3 deletions src/azure-cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,14 +155,12 @@

with open('README.rst', 'r', encoding='utf-8') as f:
README = f.read()
with open('HISTORY.rst', 'r', encoding='utf-8') as f:
HISTORY = f.read()

setup(
name='azure-cli',
version=VERSION,
description='Microsoft Azure Command-Line Tools',
long_description=README + '\n\n' + HISTORY,
long_description=README,
license='MIT',
author='Microsoft Corporation',
author_email='[email protected]',
Expand Down