generated from microsoft/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
51 lines (44 loc) · 1.4 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
# ---------------------------------------------------------
# Copyright (c) 2020 Microsoft Corporation. All rights reserved.
# ---------------------------------------------------------
"""Azure Managed Applications Python SDK"""
from os import environ
from setuptools import find_packages, setup # noqa: H301
from azureiai import generate_swagger
SWAGGER_JSON = "Partner_Ingestion_SwaggerDocument.json"
generate_swagger(SWAGGER_JSON)
NAME = "az-partner-center-cli"
VERSION = "0.2.5"
REQUIRES = [
"azure-mgmt-deploymentmanager",
"azure-mgmt-resource",
"azure-storage-blob",
"azure-identity>=1.2.0",
"urllib3 >= 1.15",
"six >= 1.10",
"certifi",
"python-dateutil",
"requests",
"pyyaml",
"pygments",
"wget",
"adal",
"cryptography>=3.3.1",
]
ENTRY_POINTS = {"console_scripts": ["ama=azureiai.ama_app:main", "azpc=azureiai.azpc_app:main"]}
setup(
name=NAME,
version=VERSION,
description="https://api.partner.microsoft.com/v1.0/ingestion",
author_email="",
url="",
keywords=["Swagger", "https://api.partner.microsoft.com/v1.0/ingestion"],
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
long_description="""
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
""",
entry_points=ENTRY_POINTS,
python_requires=">=3.7,<4",
)