Skip to content

Commit

Permalink
azure-mgmt-web 0.31.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel committed Feb 13, 2017
1 parent 6c8602b commit 10a7c47
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ listed before.
- azure-mgmt-servicebus 0.1.0
- azure-mgmt-sql 0.2.0
- azure-mgmt-trafficmanager 0.30.0rc6
- azure-mgmt-web 0.30.1
- azure-mgmt-web 0.31.0


Usage
Expand Down
15 changes: 15 additions & 0 deletions azure-mgmt-web/HISTORY.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.. :changelog:
Release History
===============

0.31.1 (2017-02-13)
+++++++++++++++++++

* Major refactoring and breaking changes
* New API Version

0.30.0 (2016-10-17)
+++++++++++++++++++

* Initial release
21 changes: 11 additions & 10 deletions azure-mgmt-web/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
# license information.
#--------------------------------------------------------------------------

from setuptools import setup
from setuptools import find_packages, setup
from io import open
import re
import os.path

# azure v0.x is not compatible with this package
# azure v0.x used to have a __version__ attribute (newer versions don't)
Expand All @@ -32,11 +34,16 @@
if not version:
raise RuntimeError('Cannot find version information')

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

setup(
name='azure-mgmt-web',
version=version,
description='Microsoft Azure Web Apps Resource Management Client Library for Python',
long_description=open('README.rst', 'r').read(),
long_description=readme + '\n\n' + history,
license='MIT License',
author='Microsoft Corporation',
author_email='ptvshelp@microsoft.com',
Expand All @@ -54,16 +61,10 @@
'License :: OSI Approved :: MIT License',
],
zip_safe=False,
packages=[
'azure',
'azure.mgmt',
'azure.mgmt.web',
'azure.mgmt.web.models',
'azure.mgmt.web.operations',
],
packages=find_packages(),
install_requires=[
'msrestazure~=0.4.7',
'azure-common~=1.1.4',
'msrestazure~=0.4.6',
'azure-mgmt-nspkg',
],
)
2 changes: 1 addition & 1 deletion doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ azure-mgmt-search 0.1.0
azure-mgmt-servicebus 0.1.0
azure-mgmt-sql 0.2.0
azure-mgmt-trafficmanager 0.30.0rc6
azure-mgmt-web 0.30.1
azure-mgmt-web 0.31.0
===================================== =========

Install from Github
Expand Down

0 comments on commit 10a7c47

Please sign in to comment.