├── .bumpversion.cfg ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── docassemblecli ├── __init__.py └── commands.py └── pyproject.toml /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpyle/docassemblecli/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpyle/docassemblecli/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpyle/docassemblecli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpyle/docassemblecli/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpyle/docassemblecli/HEAD/README.md -------------------------------------------------------------------------------- /docassemblecli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpyle/docassemblecli/HEAD/docassemblecli/__init__.py -------------------------------------------------------------------------------- /docassemblecli/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpyle/docassemblecli/HEAD/docassemblecli/commands.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpyle/docassemblecli/HEAD/pyproject.toml --------------------------------------------------------------------------------