├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs └── assets │ └── header.png ├── setup.py └── shownamer ├── __init__.py └── cli.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.py[cod] 3 | *.egg-info/ 4 | dist/ 5 | build/ 6 | 7 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theamallalgi/shownamer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theamallalgi/shownamer/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theamallalgi/shownamer/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theamallalgi/shownamer/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theamallalgi/shownamer/HEAD/docs/assets/header.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theamallalgi/shownamer/HEAD/setup.py -------------------------------------------------------------------------------- /shownamer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shownamer/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theamallalgi/shownamer/HEAD/shownamer/cli.py --------------------------------------------------------------------------------