1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
from setuptools import setup
VERSION = "0.1.1"
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
]
# Until https://gitlab.com/pycqa/flake8/issues/415 is resolved, pin version of pycodestyle
DEPENDENCIES = [
'coverage>=4.2',
'flake8==3.5.0',
'pycodestyle==2.3.1',
'nose>=1.3.7',
'readme_renderer>=17.2',
'requests',
'pyyaml',
'knack',
'tabulate>=0.7.7',
'colorama>=0.3.7'
]
setup(
name='azure-cli-dev-tools',
version=VERSION,
description='Microsoft Azure Command-Line - Development Tools',
long_description='',
license='MIT',
author='Microsoft Corporation',
author_email='azpycli@microsoft.com',
url='https://github.com/Azure/azure-cli',
packages=[
'automation',
'automation.style',
'automation.tests',
'automation.setup',
'automation.coverage',
'automation.verify'
],
entry_points={
'console_scripts': [
'azdev=automation.__main__:main',
'check_style=automation.style:legacy_entry',
'run_tests=automation.tests:legacy_entry_point'
]
},
install_requires=DEPENDENCIES,
extras_require={
":python_version<'3.0'": ['pylint==1.9.2'],
":python_version>='3.0'": ['pylint==2.0.0']
}
)
|