├── .gitignore ├── CHANGELOG.rst ├── CHANGES.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── bin └── boto-rsync └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .coverage 3 | MANIFEST 4 | tests/ 5 | build/ 6 | dist/ 7 | *.egg-info/ 8 | -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedifferently/boto_rsync/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedifferently/boto_rsync/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedifferently/boto_rsync/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.txt *.rst 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedifferently/boto_rsync/HEAD/README.rst -------------------------------------------------------------------------------- /bin/boto-rsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedifferently/boto_rsync/HEAD/bin/boto-rsync -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedifferently/boto_rsync/HEAD/setup.py --------------------------------------------------------------------------------