├── .editorconfig ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs ├── README.md └── _config.yml ├── pysigep ├── __init__.py ├── __version__.py ├── client.py └── utils.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_client.py └── test_utils.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /pysigep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/pysigep/__init__.py -------------------------------------------------------------------------------- /pysigep/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/pysigep/__version__.py -------------------------------------------------------------------------------- /pysigep/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/pysigep/client.py -------------------------------------------------------------------------------- /pysigep/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/pysigep/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | 4 | [flake8] 5 | exclude = docs -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstuttgart/pysigep/HEAD/tox.ini --------------------------------------------------------------------------------