-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
40 lines (34 loc) · 1.14 KB
/
pyproject.toml
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
[tool.poetry]
name = "az-account-switcher"
version = "1.4.0"
description = "Utility to switch Azure subscriptions"
license = "MIT"
authors = ["Alexander Bij <[email protected]>"]
readme = "README.md"
repository = "https://github.com/abij/az-account-switcher"
keywords = ["azure", "cli", "subscription", "management"]
packages = [{ include = "az_account_switcher" }]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# https://python-poetry.org/docs/managing-dependencies/#dependency-groups
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.1.3"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
pytest_click = "^1.1.0"
commitizen = "^3.13.0"
setuptools = ">=69.0.3,<71.0.0" # Required for PyCharm.
[tool.poetry.scripts]
az-switch = "az_account_switcher.az_account_switcher:main"
az-account-switcher = "az_account_switcher.az_account_switcher:main"
[tools.ruff]
line-length = 120
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
version_scheme = "semver"
version_provider = "poetry"
major_version_zero = true
bump_message = "bump: version $current_version -> $new_version [skip ci]"