Skip to content
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
Next Next commit
PBI auto packaging
  • Loading branch information
lmazuel committed May 25, 2018
commit a19a96919e1d0db7df225e2fe01be2a89901fd9d
6 changes: 3 additions & 3 deletions azure-mgmt-powerbiembedded/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This is the Microsoft Azure Power BI Embedded Management Client Library.
Azure Resource Manager (ARM) is the next generation of management APIs that
replace the old Azure Service Management (ASM).

This package has been tested with Python 2.7, 3.3, 3.4, 3.5 and 3.6.
This package has been tested with Python 2.7, 3.4, 3.5 and 3.6.

For the older Azure Service Management (ASM) libraries, see
`azure-servicemanagement-legacy <https://pypi.python.org/pypi/azure-servicemanagement-legacy>`__ library.
Expand Down Expand Up @@ -37,8 +37,8 @@ Usage
=====

For code examples, see `Power BI Embedded Management
<https://azure-sdk-for-python.readthedocs.org/en/latest/sample_azure-mgmt-powerbiembedded.html>`__
on readthedocs.org.
<https://docs.microsoft.com/python/api/overview/azure/power-bi>`__
on docs.microsoft.com.


Provide Feedback
Expand Down
5 changes: 5 additions & 0 deletions azure-mgmt-powerbiembedded/sdk_packaging.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[packaging]
package_name = "azure-mgmt-powerbiembedded"
package_pprint_name = "Power BI Embedded Management"
package_doc_id = "power-bi"
is_stable = true
11 changes: 5 additions & 6 deletions azure-mgmt-powerbiembedded/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,25 +61,24 @@
long_description=readme + '\n\n' + history,
license='MIT License',
author='Microsoft Corporation',
author_email='ptvshelp@microsoft.com',
author_email='azpysdkhelp@microsoft.com',
url='https://github.com/Azure/azure-sdk-for-python',
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
],
zip_safe=False,
packages=find_packages(),
packages=find_packages(exclude=["tests"]),
install_requires=[
'msrestazure~=0.4.8',
'azure-common~=1.1.6',
'msrestazure>=0.4.27,<2.0.0',
'azure-common~=1.1',
],
cmdclass=cmdclass
)