Skip to content

Commit

Permalink
[purview] add azure-purview-nspkg (#18518)
Browse files Browse the repository at this point in the history
* add azure-purview-nspkg

* rename iot file to purview

* remove 3.5 from setup.py
  • Loading branch information
iscai-msft authored May 5, 2021
1 parent d0c798d commit 55f9e80
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sdk/nspkg/azure-purview-nspkg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Release History

## 2.0.0 (2021-03-08)

* Initial Release
3 changes: 3 additions & 0 deletions sdk/nspkg/azure-purview-nspkg/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include *.md
include azure/__init__.py
include azure/purview/__init__.py
11 changes: 11 additions & 0 deletions sdk/nspkg/azure-purview-nspkg/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Microsoft Azure Purview SDK for Python

This is the Microsoft Azure Purview namespace package.

This package is not intended to be installed directly by the end user.

It provides the necessary files for other packages to extend the
azure.purview namespace.

The complete list of available packages can be found at:
https://aka.ms/azsdk/python/all
1 change: 1 addition & 0 deletions sdk/nspkg/azure-purview-nspkg/azure/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
Empty file.
2 changes: 2 additions & 0 deletions sdk/nspkg/azure-purview-nspkg/setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal=1
39 changes: 39 additions & 0 deletions sdk/nspkg/azure-purview-nspkg/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#!/usr/bin/env python

# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------

from setuptools import setup

setup(
name='azure-purview-nspkg',
version='2.0.0',
description='Microsoft Azure Purview Namespace Package [Internal]',
long_description=open('README.md', 'r').read(),
license='MIT License',
author='Microsoft Corporation',
author_email='azurepysdk@microsoft.com',
url='https://github.com/Azure/azure-sdk-for-python/',
classifiers=[
'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.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
],
zip_safe=False,
packages=[
'azure.purview',
],
install_requires=[
'azure-nspkg>=2.0.0',
]
)

0 comments on commit 55f9e80

Please sign in to comment.