2017-01-06 20:51:44 +03:00
|
|
|
# --------------------------------------------------------------------------------------------
|
|
|
|
# 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
|
|
|
|
|
2017-01-09 20:07:29 +03:00
|
|
|
VERSION = "0.1.1"
|
2017-01-06 20:51:44 +03:00
|
|
|
|
|
|
|
CLASSIFIERS = [
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
2017-01-24 06:24:10 +03:00
|
|
|
'Programming Language :: Python :: 3.6',
|
2017-01-06 20:51:44 +03:00
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
]
|
|
|
|
|
|
|
|
DEPENDENCIES = [
|
2017-06-01 09:50:44 +03:00
|
|
|
'autopep8>=1.2.4',
|
2017-08-20 19:22:44 +03:00
|
|
|
'pylint>=1.7.1'
|
2017-06-01 09:50:44 +03:00
|
|
|
'coverage>=4.2',
|
2017-10-24 06:47:48 +03:00
|
|
|
'flake8==3.5.0',
|
2017-06-01 09:50:44 +03:00
|
|
|
'pycodestyle>=2.2.0',
|
|
|
|
'nose>=1.3.7',
|
2017-06-19 19:34:11 +03:00
|
|
|
'readme_renderer>=17.2',
|
2018-02-06 02:19:17 +03:00
|
|
|
'requests',
|
2017-06-01 08:56:01 +03:00
|
|
|
'six>=1.10.0',
|
2017-12-01 01:55:10 +03:00
|
|
|
'tabulate>=0.7.7',
|
2018-01-19 06:04:58 +03:00
|
|
|
'colorama>=0.3.7'
|
2017-01-06 20:51:44 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
setup(
|
2017-08-20 19:22:44 +03:00
|
|
|
name='azure-cli-dev-tools',
|
2017-01-06 20:51:44 +03:00
|
|
|
version=VERSION,
|
2017-08-20 19:22:44 +03:00
|
|
|
description='Microsoft Azure Command-Line - Development Tools',
|
2017-01-06 20:51:44 +03:00
|
|
|
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',
|
2017-12-01 01:55:10 +03:00
|
|
|
'automation.coverage',
|
|
|
|
'automation.verify'
|
2017-01-06 20:51:44 +03:00
|
|
|
],
|
2017-11-30 21:38:43 +03:00
|
|
|
entry_points={
|
2017-11-01 19:47:49 +03:00
|
|
|
'console_scripts': [
|
|
|
|
'azdev=automation.__main__:main',
|
2017-11-30 21:38:43 +03:00
|
|
|
'check_style=automation.style:legacy_entry',
|
2018-01-19 06:04:58 +03:00
|
|
|
'run_tests=automation.tests:legacy_entry_point'
|
2017-11-30 21:38:43 +03:00
|
|
|
]
|
2017-11-01 19:47:49 +03:00
|
|
|
},
|
2017-01-06 20:51:44 +03:00
|
|
|
install_requires=DEPENDENCIES
|
|
|
|
)
|