azure-deploy-cli 1.0.0__py3-none-any.whl → 1.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '1.0.0'
32
- __version_tuple__ = version_tuple = (1, 0, 0)
31
+ __version__ = version = '1.0.1'
32
+ __version_tuple__ = version_tuple = (1, 0, 1)
33
33
 
34
34
  __commit_id__ = commit_id = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: azure-deploy-cli
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Python CLI for Azure deployment automation - identity, roles, and container apps management
5
5
  Author-email: decewei <celinew1221@gmail.com>
6
6
  License: Mozilla Public License Version 2.0
@@ -386,76 +386,58 @@ Classifier: Intended Audience :: Developers
386
386
  Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
387
387
  Classifier: Natural Language :: English
388
388
  Classifier: Programming Language :: Python :: 3
389
- Classifier: Programming Language :: Python :: 3.10
390
389
  Classifier: Programming Language :: Python :: 3.11
391
390
  Classifier: Programming Language :: Python :: 3.12
392
- Requires-Python: >=3.10
391
+ Requires-Python: >=3.11
393
392
  Description-Content-Type: text/markdown
394
393
  License-File: LICENSE
395
- Requires-Dist: azure-identity>=1.14.0
396
- Requires-Dist: azure-mgmt-appcontainers
397
- Requires-Dist: azure-mgmt-authorization
398
- Requires-Dist: azure-mgmt-keyvault
399
- Requires-Dist: azure-mgmt-msi
400
- Requires-Dist: python-dotenv>=1.0.0
401
- Requires-Dist: pydantic>=2.0.0
402
- Requires-Dist: pyyaml>=6.0
394
+ Requires-Dist: azure-identity==1.25.1
395
+ Requires-Dist: azure-mgmt-appcontainers==4.0.0
396
+ Requires-Dist: azure-mgmt-authorization==4.0.0
397
+ Requires-Dist: azure-mgmt-keyvault==13.0.0
398
+ Requires-Dist: azure-mgmt-msi==7.1.0
399
+ Requires-Dist: python-dotenv==1.2.1
400
+ Requires-Dist: pydantic==2.12.5
401
+ Requires-Dist: PyYAML==6.0.3
403
402
  Provides-Extra: dev
404
- Requires-Dist: ruff>=0.1.0; extra == "dev"
405
- Requires-Dist: mypy>=1.7.0; extra == "dev"
406
- Requires-Dist: pytest>=7.0; extra == "dev"
407
- Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
408
- Requires-Dist: coverage>=7.3.0; extra == "dev"
409
- Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
410
- Requires-Dist: commitizen>=3.0.0; extra == "dev"
411
- Requires-Dist: pre-commit>=3.0.0; extra == "dev"
412
- Requires-Dist: types-setuptools; extra == "dev"
413
- Requires-Dist: types-PyYAML; extra == "dev"
403
+ Requires-Dist: ruff==0.14.10; extra == "dev"
404
+ Requires-Dist: mypy==1.19.1; extra == "dev"
405
+ Requires-Dist: pytest==9.0.2; extra == "dev"
406
+ Requires-Dist: pytest-asyncio==1.3.0; extra == "dev"
407
+ Requires-Dist: coverage==7.13.1; extra == "dev"
408
+ Requires-Dist: pytest-cov==7.0.0; extra == "dev"
409
+ Requires-Dist: commitizen==4.11.0; extra == "dev"
410
+ Requires-Dist: pre-commit==4.1.0; extra == "dev"
411
+ Requires-Dist: types-setuptools==80.9.0.20251223; extra == "dev"
412
+ Requires-Dist: types-PyYAML==6.0.12.20250915; extra == "dev"
414
413
  Dynamic: license-file
415
414
 
416
415
  # Azure Deploy CLI
417
416
 
418
417
  Python CLI for Azure deployment automation - manage identities, roles, and Container Apps deployments.
419
418
 
420
- ## Version Management and Changelog
421
-
422
- This project uses a dual-tool approach:
423
-
424
- - **[setuptools-scm](https://setuptools-scm.readthedocs.io/)** - Automatic versioning based on git tags (dynamic at build time)
425
- - **[commitizen](https://commitizen-tools.github.io/commitizen/)** - Version bumping and tagging with semantic versioning
426
- - **[git-cliff](https://git-cliff.org/)** - Automatic changelog generation from conventional commits
427
-
428
- **Release workflow:**
429
- 1. git-cliff generates changelog from commits since last tag
430
- 2. commitizen bumps version and creates git tag
431
- 3. New version is committed alongside updated changelog
432
- 4. Tag triggers PyPI publishing and GitHub Release
433
-
434
- No manual version or changelog updates are needed.
435
-
436
419
  ## Quick Start
437
420
 
438
421
  **Install for development:**
439
422
 
440
423
  ```bash
441
424
  cd /path/to/azure-deploy-cli
442
- pip install -e ".[dev]"
425
+ source setup.sh -i
443
426
  azd --help
444
427
  ```
445
428
 
446
429
  **Use in another project:**
447
430
 
448
431
  ```bash
449
- pip install -e /path/to/scripts
432
+ pip install azure-deploy-cli
450
433
  ```
451
434
 
452
435
  ## Installation
453
436
 
454
- | Method | Command |
455
- |--------|----------|
456
- | Local development | `pip install -e ".[dev]"` |
457
- | Local changes | `pip install -e /path/to/azure-deploy-cli` |
458
- | From PyPI | `pip install azure-deploy-cli` |
437
+ | Method | Command |
438
+ | ------------------- | ----------------------------- |
439
+ | Local development | `source setup.sh -i` |
440
+ | From PyPI | `pip install azure-deploy-cli`|
459
441
 
460
442
  ## CLI Commands
461
443
 
@@ -656,20 +638,6 @@ azd create-and-assign \
656
638
  --print
657
639
  ```
658
640
 
659
- ## Development
660
-
661
- ```bash
662
- make install-dev # Install with dev tools
663
- make build # Run lint + type-check + test
664
- make lint # Code linting with ruff
665
- make format # Auto-format code
666
- make type-check # Type checking with mypy
667
- make test # Run tests with pytest
668
- make clean # Remove build artifacts
669
- ```
670
-
671
- Commit using [Conventional Commits](https://www.conventionalcommits.org/) format (e.g., `feat: add feature`, `fix: resolve bug`)
672
-
673
641
  ## Scripting and Output Handling
674
642
 
675
643
  This CLI is designed for both interactive use and automated scripting. To support this, it follows the standard practice of separating output streams:
@@ -1,5 +1,5 @@
1
1
  azure_deploy_cli/__init__.py,sha256=Xj8ZMqmqKWc2hhR8rtSETkOmkvrFgh020MYVB_yHp4s,1134
2
- azure_deploy_cli/_version.py,sha256=vLA4ITz09S-S435nq6yTF6l3qiSz6w4euS1rOxXgd1M,704
2
+ azure_deploy_cli/_version.py,sha256=JvmBpae6cHui8lSCsCcZQAxzawN2NERHGsr-rIUeJMo,704
3
3
  azure_deploy_cli/cli.py,sha256=I1hXskorvbryjNg0XXdqLjdBuQTPKgZeW03tLHlLxzk,1663
4
4
  azure_deploy_cli/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  azure_deploy_cli/aca/aca_cli.py,sha256=_6c6l7iH5W2Prue3JHSHBQL12WGs9twGivmsZ9h8STU,15944
@@ -23,9 +23,9 @@ azure_deploy_cli/utils/env.py,sha256=Qoc0mlrEcyCGk6TLl0AJNfuvhdBuok_93EW2g7Clpu8
23
23
  azure_deploy_cli/utils/key_vault.py,sha256=9JYE1pmoPhggU7TZXod_qmu8TgeVmdM0OEIVHPYtPvM,354
24
24
  azure_deploy_cli/utils/logging.py,sha256=NxrhhNGnS0SWReKbwJ56A8LYLmjRd77ZBVOVQe9bgQE,3813
25
25
  azure_deploy_cli/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
- azure_deploy_cli-1.0.0.dist-info/licenses/LICENSE,sha256=Pz2eACSxkhsGfW9_iN60pgy-enjnbGTj8df8O3ebnQQ,16726
27
- azure_deploy_cli-1.0.0.dist-info/METADATA,sha256=cQtDCD1kYILhA56bgSEAoeYHsZ-HqXlpsx1hB3zGdag,30298
28
- azure_deploy_cli-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
29
- azure_deploy_cli-1.0.0.dist-info/entry_points.txt,sha256=vuN79v5YJtDi5tF3rCd5qVvCGAMEQMImRHq64B-y-KQ,91
30
- azure_deploy_cli-1.0.0.dist-info/top_level.txt,sha256=luw_MJJWFd2vFwCtx3wbmihlkCdlZxk1NZou1eToBtU,17
31
- azure_deploy_cli-1.0.0.dist-info/RECORD,,
26
+ azure_deploy_cli-1.0.1.dist-info/licenses/LICENSE,sha256=Pz2eACSxkhsGfW9_iN60pgy-enjnbGTj8df8O3ebnQQ,16726
27
+ azure_deploy_cli-1.0.1.dist-info/METADATA,sha256=n5aerU-WqGhS9bkhb03M2iYdRvZpBcu01W78TKFqqRk,29137
28
+ azure_deploy_cli-1.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
29
+ azure_deploy_cli-1.0.1.dist-info/entry_points.txt,sha256=vuN79v5YJtDi5tF3rCd5qVvCGAMEQMImRHq64B-y-KQ,91
30
+ azure_deploy_cli-1.0.1.dist-info/top_level.txt,sha256=luw_MJJWFd2vFwCtx3wbmihlkCdlZxk1NZou1eToBtU,17
31
+ azure_deploy_cli-1.0.1.dist-info/RECORD,,