Metadata-Version: 2.4
Name: baw
Version: 1.72.0
Summary: A simple console-application to manage project complexity.
Home-page: https://github.com/anaticulae/baw
Author: Helmut Konrad Schewe
Author-email: helmutus@outlook.com
License: MIT License
        
        Copyright (c) 2026 Helmut Konrad Schewe
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Platform: any
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: semver<4.0.0,>=3.0.4
Requires-Dist: python_semantic_release<11.0.0,>=10.5.3
Requires-Dist: docker<8.0.0,>=7.1.0
Requires-Dist: yapf==0.43.0
Requires-Dist: isort==8.0.1
Requires-Dist: pytest==9.0.2
Requires-Dist: pytest-xdist==3.8.0
Requires-Dist: pytest-cov==7.0.0
Requires-Dist: bandit==1.9.4
Requires-Dist: pylint==4.0.5
Requires-Dist: build==1.4.0
Requires-Dist: virtualenv<22.0.0,>=21.2.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: platform
Dynamic: requires-dist
Dynamic: summary

# Beta Alpha Omega

## Semantic Release

Format of commit message:

```
<tag>(scope): subject

body

footer
```

### Tags

* feat: A new feature
* fix: A bug fix
* docs: Documentation only changes
* style: Changes that do not affect the meaning of the code, e.g. whitespaces
* refactor: No functional change
* perf: A change that improves performances
* test: Add missing or correcting existing test
* chore: Changes to the buildprocess or auxiliary tools, e.g. doc generation

### Subject

* use imperative, present tense: "Change"
* dont use capitalize first letter
* no dot (.) at the end

### Body

* motivation for the change and contrast to old behavior

### Footer

* BREAKING CHANGE:
* Solves, refer etc.

## Docker

```
repository = os.environ.get(
    'BAW_PIPELINE_REPO',
    '169.254.149.20:6001',
)
imagename = os.environ.get(
    'BAW_PIPELINE_NAME',
    'arch_python_baw',
)
version = os.environ.get(
    'BAW_PIPELINE_VERSION',
    '0.8.1',
)
name = os.environ.get(
    'BAW_PIPELINE_TEST_ARGS',
    '-v $WORKSPACE:/var/workdir:ro',
)
```
