diff --git a/sdk/nspkg/azure-purview-nspkg/CHANGELOG.md b/sdk/nspkg/azure-purview-nspkg/CHANGELOG.md new file mode 100644 index 000000000000..45cf868070d1 --- /dev/null +++ b/sdk/nspkg/azure-purview-nspkg/CHANGELOG.md @@ -0,0 +1,5 @@ +# Release History + +## 2.0.0 (2021-03-08) + +* Initial Release diff --git a/sdk/nspkg/azure-purview-nspkg/MANIFEST.in b/sdk/nspkg/azure-purview-nspkg/MANIFEST.in new file mode 100644 index 000000000000..f7c294f423e6 --- /dev/null +++ b/sdk/nspkg/azure-purview-nspkg/MANIFEST.in @@ -0,0 +1,3 @@ +include *.md +include azure/__init__.py +include azure/purview/__init__.py diff --git a/sdk/nspkg/azure-purview-nspkg/README.md b/sdk/nspkg/azure-purview-nspkg/README.md new file mode 100644 index 000000000000..51011b1b8bf4 --- /dev/null +++ b/sdk/nspkg/azure-purview-nspkg/README.md @@ -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 diff --git a/sdk/nspkg/azure-purview-nspkg/azure/__init__.py b/sdk/nspkg/azure-purview-nspkg/azure/__init__.py new file mode 100644 index 000000000000..69e3be50dac4 --- /dev/null +++ b/sdk/nspkg/azure-purview-nspkg/azure/__init__.py @@ -0,0 +1 @@ +__path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/sdk/nspkg/azure-purview-nspkg/azure/purview/__init__.py b/sdk/nspkg/azure-purview-nspkg/azure/purview/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/sdk/nspkg/azure-purview-nspkg/setup.cfg b/sdk/nspkg/azure-purview-nspkg/setup.cfg new file mode 100644 index 000000000000..3c6e79cf31da --- /dev/null +++ b/sdk/nspkg/azure-purview-nspkg/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/sdk/nspkg/azure-purview-nspkg/setup.py b/sdk/nspkg/azure-purview-nspkg/setup.py new file mode 100644 index 000000000000..7dd417bf4ad4 --- /dev/null +++ b/sdk/nspkg/azure-purview-nspkg/setup.py @@ -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', + ] +)