Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[purview] add azure-purview-nspkg #18518

Merged
merged 3 commits into from
May 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
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='[email protected]',
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',
]
)