forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
94 lines (91 loc) · 3.55 KB
/
setup.py
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/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.
#--------------------------------------------------------------------------
from setuptools import setup
setup(
name='azure-mgmt',
version='5.0.0a1',
description='Microsoft Azure Resource Management Client Libraries for Python',
long_description=open('README.rst', 'r').read(),
license='MIT License',
author='Microsoft Corporation',
author_email='[email protected]',
url='https://github.com/Azure/azure-sdk-for-python',
classifiers=[
'Development Status :: 5 - Production/Stable',
'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',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
],
zip_safe=False,
install_requires=[
'azure-mgmt-advisor~=1.0',
'azure-mgmt-applicationinsights~=0.1.1',
'azure-mgmt-authorization~=0.50.0',
'azure-mgmt-batch~=5.0',
'azure-mgmt-billing~=0.2.0',
'azure-mgmt-cdn~=3.0',
'azure-mgmt-cognitiveservices~=3.0',
'azure-mgmt-commerce~=1.0',
'azure-mgmt-compute~=4.0',
'azure-mgmt-consumption~=2.0',
'azure-mgmt-containerinstance~=1.0',
'azure-mgmt-containerregistry~=2.1',
'azure-mgmt-containerservice~=4.2',
'azure-mgmt-cosmosdb~=0.4.1',
'azure-mgmt-datafactory~=0.6.0',
'azure-mgmt-datalake-analytics~=0.6.0',
'azure-mgmt-datalake-store~=0.5.0',
'azure-mgmt-datamigration~=1.0',
'azure-mgmt-devspaces~=0.1.0',
'azure-mgmt-devtestlabs~=2.2',
'azure-mgmt-dns~=2.0',
'azure-mgmt-eventgrid~=1.0',
'azure-mgmt-eventhub~=2.1',
'azure-mgmt-hanaonazure~=0.1.1',
'azure-mgmt-iotcentral~=0.1.0',
'azure-mgmt-iothub~=0.5.0',
'azure-mgmt-iothubprovisioningservices~=0.2.0',
'azure-mgmt-keyvault~=1.0',
'azure-mgmt-loganalytics~=0.2.0',
'azure-mgmt-logic~=3.0',
'azure-mgmt-machinelearningcompute~=0.4.1',
'azure-mgmt-managementgroups~=0.1.0',
'azure-mgmt-managementpartner~=0.1.0',
'azure-mgmt-maps~=0.1.0',
'azure-mgmt-marketplaceordering~=0.1.0',
'azure-mgmt-media~=1.0.0rc2',
'azure-mgmt-monitor~=0.5.2',
'azure-mgmt-msi~=0.2.0',
'azure-mgmt-network~=2.0',
'azure-mgmt-notificationhubs~=2.0',
'azure-mgmt-policyinsights~=0.1.0',
'azure-mgmt-powerbiembedded~=2.0',
'azure-mgmt-rdbms~=1.2',
'azure-mgmt-recoveryservices~=0.3.0',
'azure-mgmt-recoveryservicesbackup~=0.3.0',
'azure-mgmt-redis~=5.0',
'azure-mgmt-relay~=0.1.0',
'azure-mgmt-reservations~=0.2.1',
'azure-mgmt-resource~=2.0',
'azure-mgmt-scheduler~=2.0',
'azure-mgmt-search~=2.0',
'azure-mgmt-servicebus~=0.5.1',
'azure-mgmt-servicefabric~=0.2.0',
'azure-mgmt-signalr~=0.1.0',
'azure-mgmt-sql~=0.9.1',
'azure-mgmt-storage~=2.0',
'azure-mgmt-subscription~=0.2.0',
'azure-mgmt-trafficmanager~=0.50.0',
'azure-mgmt-web~=0.35.0',
],
)