Metadata-Version: 2.2
Name: azpipvar
Version: 0.1.0
Summary: A tool to extract and list variables from Azure Pipeline YAML files
Home-page: https://github.com/greatbody/azure-pipeline-variable-list
Author: greatbody
Author-email: sunruicode@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: pyyaml>=6.0.1
Provides-Extra: test
Requires-Dist: pytest>=7.0.0; extra == "test"
Requires-Dist: pytest-cov>=4.0.0; extra == "test"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Azure Pipeline Variable List

A tool to analyze and list variables used in Azure Pipeline YAML files.

## Installation

From this directory:

```bash
pip install -r requirements.txt
pip install .
```

## Usage

Navigate to your Azure Pipelines directory and run:

```bash
check-pipeline-variables
```

This will scan all YAML files in the current directory and subdirectories, listing all variables used in the pipeline files.

## Features

- Detects variables in $(VARIABLE) format
- Identifies variables defined in variable groups
- Supports nested directory structures
- Handles both .yml and .yaml file extensions 
