From b7e06a581813d28d89f800d8f94eaef8ef01135b Mon Sep 17 00:00:00 2001 From: seankane-msft Date: Tue, 1 Sep 2020 09:29:13 -0700 Subject: [PATCH] resetting setup.py to pre-AutorestCI sabatoge --- sdk/tables/azure-data-tables/setup.py | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/sdk/tables/azure-data-tables/setup.py b/sdk/tables/azure-data-tables/setup.py index 724a3be68069d..92abffb988a55 100644 --- a/sdk/tables/azure-data-tables/setup.py +++ b/sdk/tables/azure-data-tables/setup.py @@ -58,7 +58,7 @@ author_email='azpysdkhelp@microsoft.com', url='https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/table/azure-table', classifiers=[ - 'Development Status :: 4 - Beta', + "Development Status :: 4 - Beta", 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', @@ -68,23 +68,20 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'License :: OSI Approved :: MIT License', - ], zip_safe=False, packages=find_packages(exclude=[ - 'tests', # Exclude packages that will be covered by PEP420 or nspkg 'azure', - 'azure.data', + 'tests', ]), install_requires=[ - 'azure-core<2.0.0,>=1.2.2', - 'msrest>=0.6.10', - 'msrestazure>=0.4.32,<2.0.0', - 'azure-common~=1.1', + "azure-core<2.0.0,>=1.2.2", + "msrest>=0.6.10" + # azure-data-tables ], extras_require={ ":python_version<'3.0'": ['futures'], ":python_version<'3.4'": ['enum34>=1.0.4'], ":python_version<'3.5'": ["typing"] - } + }, )