|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=77.0.3", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "azure-template" |
| 7 | +authors = [ |
| 8 | + { name = "Microsoft Corporation", email = "[email protected]"}, |
| 9 | +] |
| 10 | +description = "Microsoft Azure Template Package Client Library for Python" |
| 11 | +keywords = ["azure", "azure sdk"] |
| 12 | +requires-python = ">=3.9" |
| 13 | +license = "MIT" |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 4 - Beta", |
| 16 | + "Programming Language :: Python", |
| 17 | + "Programming Language :: Python :: 3 :: Only", |
| 18 | + "Programming Language :: Python :: 3", |
| 19 | + "Programming Language :: Python :: 3.9", |
| 20 | + "Programming Language :: Python :: 3.10", |
| 21 | + "Programming Language :: Python :: 3.11", |
| 22 | + "Programming Language :: Python :: 3.12", |
| 23 | + "Programming Language :: Python :: 3.13", |
| 24 | +] |
| 25 | +dependencies = [ |
| 26 | + "azure-core<2.0.0,>=1.23.0", |
| 27 | +] |
| 28 | +dynamic = ["version", "readme"] |
| 29 | + |
| 30 | +[project.urls] |
| 31 | +"Bug Reports" = "https://github.com/Azure/azure-sdk-for-python/issues" |
| 32 | +"Source" = "https://github.com/Azure/azure-sdk-for-python" |
| 33 | + |
| 34 | +[tool.setuptools.dynamic] |
| 35 | +version = {attr = "azure.template._version.VERSION"} |
| 36 | +readme = {file = ["README.md"], content-type = "text/markdown"} |
| 37 | + |
| 38 | +[tool.setuptools.packages.find] |
| 39 | +exclude = ["tests*", "samples*", "azure"] |
| 40 | + |
| 41 | +[tool.setuptools.package-data] |
| 42 | +pytyped = ["py.typed"] |
| 43 | + |
1 | 44 | [tool.azure-sdk-build]
|
2 | 45 | mypy = true
|
3 | 46 | type_check_samples = true
|
|
0 commit comments