├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── iconfonts.py ├── setup.cfg ├── setup.py └── tests └── unit-tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | MANIFEST 3 | tests/__pycache__/ 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Use it in any personal or commercial project you want. -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadLittleMods/markdown-icons/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadLittleMods/markdown-icons/HEAD/README.md -------------------------------------------------------------------------------- /iconfonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadLittleMods/markdown-icons/HEAD/iconfonts.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadLittleMods/markdown-icons/HEAD/setup.py -------------------------------------------------------------------------------- /tests/unit-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadLittleMods/markdown-icons/HEAD/tests/unit-tests.py --------------------------------------------------------------------------------