-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 2.05 KB
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
# ----------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License file in the project root for license information.
# ----------------------------------------------------------------------------------------------
[build-system]
requires = ["setuptools == 70.0.0", "wheel == 0.30.0"]
build-backend = "setuptools.build_meta"
[project]
name = "azure-iot-ops"
dynamic = ["version"]
description = "The Azure IoT Operations extension for Azure CLI."
readme = { text = "The Azure IoT Operations extension for Azure CLI. Intended for power users and/or automation of Azure IoT Operations solutions at scale.", content-type = "text/plain" }
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Microsoft", email = "iotupx@microsoft.com" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"rich>=13.6,<14.0",
"kubernetes>=35.0,<36.0",
"azure-identity>=1.14.1,<1.18.0",
"protobuf~=4.25.0",
"opentelemetry-proto~=1.20.0",
"packaging>=23.2",
"semver>=3.0.4,<4",
"jsonschema>=4.25,<5",
]
[project.urls]
homepage = "https://github.com/azure/azure-iot-ops-cli-extension"
[tool.setuptools.dynamic]
version = { attr = "azext_edge.constants.VERSION" }
[tool.setuptools.packages.find]
include = ["azext_edge", "azext_edge.*"]
exclude = ["tests", "*.tests", "*.tests.*", "scripts"]
[tool.setuptools.package-data]
azext_edge = ["azext_metadata.json", "edge/providers/adr/schemas/*.json"]
# Pytest configuration (from setup.cfg)
[tool.pytest.ini_options]
junit_family = "xunit1"