├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── bintray.json ├── debian ├── control └── postinst ├── install └── s3.py /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidsoftware/apt-boto-s3/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidsoftware/apt-boto-s3/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidsoftware/apt-boto-s3/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidsoftware/apt-boto-s3/HEAD/README.md -------------------------------------------------------------------------------- /bintray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidsoftware/apt-boto-s3/HEAD/bintray.json -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidsoftware/apt-boto-s3/HEAD/debian/control -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | pip install boto3 3 | -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidsoftware/apt-boto-s3/HEAD/install -------------------------------------------------------------------------------- /s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucidsoftware/apt-boto-s3/HEAD/s3.py --------------------------------------------------------------------------------