├── .github ├── linters │ └── .isort.cfg └── workflows │ └── codeql-analysis.yml ├── .pre-commit-config.yaml ├── CHANGELOG ├── COPYING ├── README.md ├── s3 └── s3auth.conf /.github/linters/.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | profile = black 3 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MayaraCloud/apt-transport-s3/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MayaraCloud/apt-transport-s3/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MayaraCloud/apt-transport-s3/HEAD/CHANGELOG -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MayaraCloud/apt-transport-s3/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MayaraCloud/apt-transport-s3/HEAD/README.md -------------------------------------------------------------------------------- /s3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MayaraCloud/apt-transport-s3/HEAD/s3 -------------------------------------------------------------------------------- /s3auth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MayaraCloud/apt-transport-s3/HEAD/s3auth.conf --------------------------------------------------------------------------------