-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 983 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 983 Bytes
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
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
from setuptools import setup, find_packages
PACKAGE_NAME = "azure-basic-sample"
version = "0.1.0"
setup(
name=PACKAGE_NAME,
version=version,
description="azure-basic-sample",
author_email="",
url="",
keywords="azure, azure sdk",
packages=find_packages(),
include_package_data=True,
install_requires=[
"isodate>=0.6.1",
"azure-core>=1.37.0",
"typing-extensions>=4.6.0",
],
long_description="""\
Test Infrastructure for AutoRest.
""",
)