├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── s3env.json ├── s3env.py ├── setup.cfg ├── setup.py └── tty.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronmaske/s3env/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronmaske/s3env/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronmaske/s3env/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronmaske/s3env/HEAD/README.md -------------------------------------------------------------------------------- /s3env.json: -------------------------------------------------------------------------------- 1 | { 2 | "prod": "s3://s3-env-a91he1s1/example.json" 3 | } -------------------------------------------------------------------------------- /s3env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronmaske/s3env/HEAD/s3env.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronmaske/s3env/HEAD/setup.py -------------------------------------------------------------------------------- /tty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronmaske/s3env/HEAD/tty.gif --------------------------------------------------------------------------------