├── .gitignore ├── CHANGES.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── dirsync ├── __init__.py ├── options.py ├── run.py ├── syncer.py └── version.py ├── setup.py ├── tests ├── _README.rst ├── base.py ├── conftest.py ├── setup.cfg ├── test_base.py ├── test_cmdline.py ├── test_diff.py ├── test_errors.py ├── test_regexfilters.py ├── test_sync.py ├── test_update.py └── trees.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/README.rst -------------------------------------------------------------------------------- /dirsync/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/dirsync/__init__.py -------------------------------------------------------------------------------- /dirsync/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/dirsync/options.py -------------------------------------------------------------------------------- /dirsync/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/dirsync/run.py -------------------------------------------------------------------------------- /dirsync/syncer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/dirsync/syncer.py -------------------------------------------------------------------------------- /dirsync/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/dirsync/version.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/setup.py -------------------------------------------------------------------------------- /tests/_README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/tests/_README.rst -------------------------------------------------------------------------------- /tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/tests/base.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/tests/setup.cfg -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/tests/test_cmdline.py -------------------------------------------------------------------------------- /tests/test_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/tests/test_diff.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_regexfilters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/tests/test_regexfilters.py -------------------------------------------------------------------------------- /tests/test_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/tests/test_sync.py -------------------------------------------------------------------------------- /tests/test_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/tests/test_update.py -------------------------------------------------------------------------------- /tests/trees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/tests/trees.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkhyn/dirsync/HEAD/tox.ini --------------------------------------------------------------------------------