├── .bumpversion.cfg ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGES.md ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.md ├── RELEASE.md ├── pyproject.toml ├── release.sh ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── src └── table_format │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── cli.py │ └── version.py ├── tests ├── __init__.py ├── test_cli.py └── test_reformat.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/RELEASE.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/release.sh -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/setup.py -------------------------------------------------------------------------------- /src/table_format/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/src/table_format/__init__.py -------------------------------------------------------------------------------- /src/table_format/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/src/table_format/__main__.py -------------------------------------------------------------------------------- /src/table_format/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/src/table_format/api.py -------------------------------------------------------------------------------- /src/table_format/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/src/table_format/cli.py -------------------------------------------------------------------------------- /src/table_format/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/src/table_format/version.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_reformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/tests/test_reformat.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spookylukey/table-format/HEAD/tox.ini --------------------------------------------------------------------------------