├── .coveragerc ├── .github ├── FUNDING.yml ├── update_branch_protection_rules.py └── workflows │ └── build.yml ├── .gitignore ├── .pre-commit-hooks.yaml ├── CHANGES.rst ├── LICENSE.rst ├── MANIFEST.in ├── Makefile ├── README.rst ├── check_manifest.py ├── release.mk ├── setup.cfg ├── setup.py ├── tests.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: mgedmin 2 | -------------------------------------------------------------------------------- /.github/update_branch_protection_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/.github/update_branch_protection_rules.py -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/README.rst -------------------------------------------------------------------------------- /check_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/check_manifest.py -------------------------------------------------------------------------------- /release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/release.mk -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/check-manifest/HEAD/tox.ini --------------------------------------------------------------------------------