Skip to content

Commit 11008ec

Browse files
authored
add agrifood nspkg (Azure#18583)
1 parent 0078094 commit 11008ec

File tree

9 files changed

+65
-0
lines changed

9 files changed

+65
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Release History
2+
3+
## 1.0.0 (2021-05-07)
4+
5+
* Initial Release
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include *.md
2+
include azure/__init__.py
3+
include azure/agrifood/__init__.py
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Microsoft Azure AgriFood SDK for Python
2+
3+
This is the Microsoft Azure AgriFood 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.agrifood namespace.
9+
10+
The complete list of available packages can be found at:
11+
https://aka.ms/azsdk/python/all
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__path__ = __import__('pkgutil').extend_path(__path__, __name__)

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

Whitespace-only changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal=1
Lines changed: 39 additions & 0 deletions
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-agrifood-nspkg',
13+
version='1.0.0',
14+
description='Microsoft Azure AgriFood Namespace Package [Internal]',
15+
long_description=open('README.md', 'r').read(),
16+
license='MIT License',
17+
author='Microsoft Corporation',
18+
author_email='azurepysdk@microsoft.com',
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.agrifood',
35+
],
36+
install_requires=[
37+
'azure-nspkg>=2.0.0',
38+
]
39+
)

sdk/nspkg/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ extends:
3232
ServiceDirectory: nspkg
3333
BuildDocs: False
3434
Artifacts:
35+
- name: azure-agrifood-nspkg
36+
safeName: azureagrifood
37+
skipVerifyChangeLog: true
3538
- name: azure-ai-nspkg
3639
safeName: azureainspkg
3740
skipVerifyChangeLog: true

shared_requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ azure-mixedreality-nspkg
9191
azure-nspkg
9292
azure-keyvault-nspkg
9393
azure-media-nspkg
94+
azure-agrifood-nspkg
9495
azure-purview-nspkg
9596
azure-schemaregistry==1.0.0b1
9697
azure-search-nspkg

0 commit comments

Comments
 (0)