Skip to content

Commit 6fe8575

Browse files
committed
Packaging update of azure-graphrbac
1 parent 7c6f69f commit 6fe8575

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

azure-graphrbac/README.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Microsoft Azure SDK for Python
22
==============================
33

4-
This is the Microsoft Azure Graph RBAC Client Library.
4+
This is the Microsoft Azure MyService Management Client Library.
55

66
Azure Resource Manager (ARM) is the next generation of management APIs that
77
replace the old Azure Service Management (ASM).
88

9-
This package has been tested with Python 2.7, 3.4, 3.5 and 3.6.
9+
This package has been tested with Python 2.7, 3.4, 3.5, 3.6 and 3.7.
1010

1111
For the older Azure Service Management (ASM) libraries, see
1212
`azure-servicemanagement-legacy <https://pypi.python.org/pypi/azure-servicemanagement-legacy>`__ library.
@@ -36,8 +36,8 @@ If you see azure==0.11.0 (or any version below 1.0), uninstall it first:
3636
Usage
3737
=====
3838

39-
For code examples, see `GraphRBAC
40-
<https://docs.microsoft.com/python/api/overview/azure/activedirectory>`__
39+
For code examples, see `MyService Management
40+
<https://docs.microsoft.com/python/api/overview/azure/>`__
4141
on docs.microsoft.com.
4242

4343

azure-graphrbac/sdk_packaging.toml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[packaging]
2+
package_name = "azure-graphrbac"
3+
package_pprint_name = "MyService Management"
4+
package_doc_id = ""
5+
is_stable = false
6+
is_arm = true

azure-graphrbac/setup.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# Change the PACKAGE_NAME only to change folder and different name
2121
PACKAGE_NAME = "azure-graphrbac"
22-
PACKAGE_PPRINT_NAME = "Graph RBAC"
22+
PACKAGE_PPRINT_NAME = "MyService Management"
2323

2424
# a-b-c => a/b/c
2525
package_folder_path = PACKAGE_NAME.replace('-', '/')
@@ -72,12 +72,14 @@
7272
'Programming Language :: Python :: 3.4',
7373
'Programming Language :: Python :: 3.5',
7474
'Programming Language :: Python :: 3.6',
75+
'Programming Language :: Python :: 3.7',
7576
'License :: OSI Approved :: MIT License',
7677
],
7778
zip_safe=False,
7879
packages=find_packages(exclude=["tests"]),
7980
install_requires=[
80-
'msrestazure>=0.4.20,<2.0.0',
81+
'msrest>=0.5.0',
82+
'msrestazure>=0.4.32,<2.0.0',
8183
'azure-common~=1.1',
8284
],
8385
cmdclass=cmdclass

0 commit comments

Comments
 (0)