├── .github └── workflows │ └── linting.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── badchars ├── setup.cfg └── setup.py /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cytopia/badchars/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | badchars.egg-info/ 2 | build/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cytopia/badchars/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cytopia/badchars/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include CONTRIBUTING.md LICENSE.txt README.md 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cytopia/badchars/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cytopia/badchars/HEAD/README.md -------------------------------------------------------------------------------- /badchars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cytopia/badchars/HEAD/badchars -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cytopia/badchars/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cytopia/badchars/HEAD/setup.py --------------------------------------------------------------------------------