Skip to content

Commit

Permalink
Updated Batch mgmt setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
annatisch committed Nov 13, 2017
1 parent e77ff2e commit 042e38e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions azure-mgmt-batch/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
# license information.
#--------------------------------------------------------------------------

import re
import os.path
from io import open
from setuptools import find_packages, setup
try:
from azure_bdist_wheel import cmdclass
except ImportError:
from distutils import log as logger
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}
from io import open
import re
import os.path

# Change the PACKAGE_NAME only to change folder and different name
PACKAGE_NAME = "azure-mgmt-batch"
Expand Down Expand Up @@ -61,7 +61,7 @@
long_description=readme + '\n\n' + history,
license='MIT License',
author='Microsoft Corporation',
author_email='ptvshelp@microsoft.com',
author_email='azpysdkhelp@microsoft.com',
url='https://github.com/Azure/azure-sdk-for-python',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand All @@ -76,10 +76,10 @@
'License :: OSI Approved :: MIT License',
],
zip_safe=False,
packages=find_packages(),
packages=find_packages(exclude=["tests"]),
install_requires=[
'msrestazure~=0.4.7',
'azure-common~=1.1.5',
'msrestazure~=0.4.11',
'azure-common~=1.1',
],
cmdclass=cmdclass
)

0 comments on commit 042e38e

Please sign in to comment.