Metadata-Version: 2.4
Name: baw
Version: 1.76.1
Summary: A simple console-application to manage project complexity.
Author-email: Helmut Konrad Schewe <helmutus@outlook.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/anaticulae/baw
Project-URL: Repository, https://github.com/anaticulae/baw
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: utilo<3.0.0,>=2.107.0
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: bandit==1.9.4
Requires-Dist: pylint==4.0.5
Requires-Dist: pytest==9.0.2
Requires-Dist: pytest-xdist==3.8.0
Requires-Dist: pytest-cov==7.1.0
Requires-Dist: build==1.4.2
Requires-Dist: virtualenv<22.0.0,>=21.2.0
Requires-Dist: setuptools==82.0.1
Provides-Extra: dev
Requires-Dist: pytest_instafail==0.4.2; extra == "dev"
Requires-Dist: pytest_localserver==0.7.0; extra == "dev"
Requires-Dist: pytest_timeout==2.1.0; extra == "dev"
Requires-Dist: rope==1.14.0; extra == "dev"
Requires-Dist: pyenchant==3.2.0; extra == "dev"
Provides-Extra: doc
Requires-Dist: added-value==0.21.3; extra == "doc"
Requires-Dist: commonmark==0.9.1; extra == "doc"
Requires-Dist: recommonmark==0.7.1; extra == "doc"
Requires-Dist: Sphinx==9.1.0; extra == "doc"
Requires-Dist: sphinx-autodoc-typehints==1.19.2; extra == "doc"
Dynamic: license-file

# 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',
)
```
