├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── sdnotify └── __init__.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb4242/sdnotify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb4242/sdnotify/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | #License 2 | include LICENSE.txt 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb4242/sdnotify/HEAD/README.md -------------------------------------------------------------------------------- /sdnotify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb4242/sdnotify/HEAD/sdnotify/__init__.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb4242/sdnotify/HEAD/setup.py --------------------------------------------------------------------------------