├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── setup.cfg ├── setup.py └── syncthingmanager ├── __init__.py ├── conftest.py └── tests └── test_stman.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classicsc/syncthingmanager/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classicsc/syncthingmanager/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classicsc/syncthingmanager/HEAD/README.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classicsc/syncthingmanager/HEAD/setup.py -------------------------------------------------------------------------------- /syncthingmanager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classicsc/syncthingmanager/HEAD/syncthingmanager/__init__.py -------------------------------------------------------------------------------- /syncthingmanager/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classicsc/syncthingmanager/HEAD/syncthingmanager/conftest.py -------------------------------------------------------------------------------- /syncthingmanager/tests/test_stman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classicsc/syncthingmanager/HEAD/syncthingmanager/tests/test_stman.py --------------------------------------------------------------------------------