├── .gitignore ├── LICENSE ├── README.md ├── setup.cfg ├── setup.py ├── slpp.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirAnthony/slpp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirAnthony/slpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirAnthony/slpp/HEAD/README.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | license_file = LICENSE 3 | 4 | [bdist_wheel] 5 | universal = 1 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirAnthony/slpp/HEAD/setup.py -------------------------------------------------------------------------------- /slpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirAnthony/slpp/HEAD/slpp.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirAnthony/slpp/HEAD/tests.py --------------------------------------------------------------------------------