Skip to content

Commit 55f9e80

Browse files
authored
[purview] add azure-purview-nspkg (#18518)
* add azure-purview-nspkg * rename iot file to purview * remove 3.5 from setup.py
1 parent d0c798d commit 55f9e80

File tree

7 files changed

+61
-0
lines changed

7 files changed

+61
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Release History
2+
3+
## 2.0.0 (2021-03-08)
4+
5+
* Initial Release
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include *.md
2+
include azure/__init__.py
3+
include azure/purview/__init__.py
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Microsoft Azure Purview SDK for Python
2+
3+
This is the Microsoft Azure Purview namespace package.
4+
5+
This package is not intended to be installed directly by the end user.
6+
7+
It provides the necessary files for other packages to extend the
8+
azure.purview namespace.
9+
10+
The complete list of available packages can be found at:
11+
https://aka.ms/azsdk/python/all
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__path__ = __import__('pkgutil').extend_path(__path__, __name__)

sdk/nspkg/azure-purview-nspkg/azure/purview/__init__.py

Whitespace-only changes.
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal=1
+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#!/usr/bin/env python
2+
3+
# -------------------------------------------------------------------------
4+
# Copyright (c) Microsoft Corporation. All rights reserved.
5+
# Licensed under the MIT License. See License.txt in the project root for
6+
# license information.
7+
# --------------------------------------------------------------------------
8+
9+
from setuptools import setup
10+
11+
setup(
12+
name='azure-purview-nspkg',
13+
version='2.0.0',
14+
description='Microsoft Azure Purview Namespace Package [Internal]',
15+
long_description=open('README.md', 'r').read(),
16+
license='MIT License',
17+
author='Microsoft Corporation',
18+
author_email='[email protected]',
19+
url='https://github.com/Azure/azure-sdk-for-python/',
20+
classifiers=[
21+
'Development Status :: 5 - Production/Stable',
22+
'Programming Language :: Python',
23+
'Programming Language :: Python :: 2',
24+
'Programming Language :: Python :: 2.7',
25+
'Programming Language :: Python :: 3',
26+
'Programming Language :: Python :: 3.6',
27+
'Programming Language :: Python :: 3.7',
28+
'Programming Language :: Python :: 3.8',
29+
'Programming Language :: Python :: 3.9',
30+
'License :: OSI Approved :: MIT License',
31+
],
32+
zip_safe=False,
33+
packages=[
34+
'azure.purview',
35+
],
36+
install_requires=[
37+
'azure-nspkg>=2.0.0',
38+
]
39+
)

0 commit comments

Comments
 (0)