File: setup.py

package info (click to toggle)
python-azure 20181112%2Bgit-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 407,300 kB
  • sloc: python: 717,190; makefile: 201; sh: 76
file content (51 lines) | stat: -rw-r--r-- 1,797 bytes parent folder | download
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
#!/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',
    version='4.0.0',
    description='Microsoft Azure Client Libraries for Python',
    long_description=open('README.rst', 'r').read(),
    license='MIT License',
    author='Microsoft Corporation',
    author_email='azpysdkhelp@microsoft.com',
    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~=4.0',
        'azure-applicationinsights~=0.1.0',
        'azure-batch~=4.1',
        'azure-cosmosdb-table~=1.0',
        'azure-datalake-store~=0.0.18',
        'azure-eventgrid~=1.1',
        'azure-graphrbac~=0.40.0',
        'azure-keyvault~=1.0',
        'azure-loganalytics~=0.1.0',
        'azure-servicebus~=0.21.1',
        'azure-servicefabric~=6.3.0.0',
        'azure-servicemanagement-legacy~=0.20.6',
        'azure-storage-blob~=1.3',
        'azure-storage-queue~=1.3',
        'azure-storage-file~=1.3',
    ],
)