Remove the __init__ and use namespace packages to fix the issue with the clash of azure.core namespace from the msrest package

This commit is contained in:
Anthony Shaw 2023-10-09 17:32:58 +11:00
Родитель f6a4a50c2c
Коммит 4ff8a5f0a1
2 изменённых файлов: 2 добавлений и 6 удалений

Просмотреть файл

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

Просмотреть файл

@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages
NAME = "azure-devops"
VERSION = "7.1.0b3"
@ -44,7 +44,7 @@ setup(
keywords=["Microsoft", "VSTS", "Team Services", "SDK", "AzureTfs", "AzureDevOps", "DevOps"],
install_requires=REQUIRES,
classifiers=CLASSIFIERS,
packages=find_packages(),
packages=find_namespace_packages(),
include_package_data=True,
python_requires=">=3.7",
long_description="Azure DevOps Python clients"