├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── setup.py └── xontrib └── avox.py /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /dist 3 | __pycache__/ 4 | *.egg-info 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraLuma/xontrib-avox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraLuma/xontrib-avox/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraLuma/xontrib-avox/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraLuma/xontrib-avox/HEAD/setup.py -------------------------------------------------------------------------------- /xontrib/avox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraLuma/xontrib-avox/HEAD/xontrib/avox.py --------------------------------------------------------------------------------