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 66 67 68 69 70 71 72 73 74 75 76 77
|
#!/usr/bin/env python
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import io
from setuptools import setup
VERSION = "1.2.1"
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'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',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
]
DEPENDENCIES = [
'ConfigArgParse>=0.12.0',
'six>=1.10.0',
'vcrpy==3.0.0'
]
with io.open('README.rst', 'r', encoding='utf-8') as f:
README = f.read()
setup(
name='azure-devtools',
version=VERSION,
description='Microsoft Azure Development Tools for SDK',
long_description=README,
license='MIT',
author='Microsoft Corporation',
author_email='ptvshelp@microsoft.com',
url='https://github.com/Azure/azure-python-devtools',
zip_safe=False,
classifiers=CLASSIFIERS,
packages=[
'azure_devtools',
'azure_devtools.scenario_tests',
'azure_devtools.perfstress_tests',
'azure_devtools.ci_tools',
],
entry_points={
'console_scripts': [
'perfstress = azure_devtools.perfstress_tests:run_perfstress_cmd',
'systemperf = azure_devtools.perfstress_tests:run_system_perfstress_tests_cmd',
],
},
extras_require={
'ci_tools':[
"PyGithub>=1.40", # Can Merge PR after 1.36, "requests" and tests after 1.40
"GitPython",
"requests>=2.0"
],
'systemperf':[
"aiohttp>=3.0",
"requests>=2.0",
"tornado==6.0.3"
"pycurl==7.43.0.5"
"httpx==0.11.1"
]
},
package_dir={'': 'src'},
install_requires=DEPENDENCIES,
)
|