├── LICENSE ├── MANIFEST.in ├── README.md ├── requirements.txt ├── setup.cfg └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samco-sdk/Python-SDK/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samco-sdk/Python-SDK/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samco-sdk/Python-SDK/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | 4 | [bdist_wheel] 5 | universal=1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samco-sdk/Python-SDK/HEAD/setup.py --------------------------------------------------------------------------------