├── .github ├── FUNDING.yml └── workflows │ └── ci.yaml ├── .gitignore ├── COPYING ├── flaggie ├── __init__.py ├── __main__.py ├── config.py ├── mangle.py └── pm.py ├── pyproject.toml ├── test ├── __init__.py ├── test_config.py ├── test_main.py ├── test_mangle.py └── test_pm.py └── tox.ini /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/flaggie/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/flaggie/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | /.tox/ 3 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/flaggie/HEAD/COPYING -------------------------------------------------------------------------------- /flaggie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/flaggie/HEAD/flaggie/__init__.py -------------------------------------------------------------------------------- /flaggie/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/flaggie/HEAD/flaggie/__main__.py -------------------------------------------------------------------------------- /flaggie/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/flaggie/HEAD/flaggie/config.py -------------------------------------------------------------------------------- /flaggie/mangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/flaggie/HEAD/flaggie/mangle.py -------------------------------------------------------------------------------- /flaggie/pm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/flaggie/HEAD/flaggie/pm.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/flaggie/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/flaggie/HEAD/test/test_config.py -------------------------------------------------------------------------------- /test/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/flaggie/HEAD/test/test_main.py -------------------------------------------------------------------------------- /test/test_mangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/flaggie/HEAD/test/test_mangle.py -------------------------------------------------------------------------------- /test/test_pm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/flaggie/HEAD/test/test_pm.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/flaggie/HEAD/tox.ini --------------------------------------------------------------------------------