├── .editorconfig ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── berth ├── __init__.py ├── build.py ├── cli.py ├── config.py ├── package.py └── utils.py ├── requirements.txt ├── sample.yaml └── setup.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalconSocial/berth/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | *.egg-info/ 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalconSocial/berth/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalconSocial/berth/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalconSocial/berth/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include CHANGELOG.md 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalconSocial/berth/HEAD/README.md -------------------------------------------------------------------------------- /berth/__init__.py: -------------------------------------------------------------------------------- 1 | """Utility to generate package files using Docker containers.""" 2 | -------------------------------------------------------------------------------- /berth/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalconSocial/berth/HEAD/berth/build.py -------------------------------------------------------------------------------- /berth/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalconSocial/berth/HEAD/berth/cli.py -------------------------------------------------------------------------------- /berth/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalconSocial/berth/HEAD/berth/config.py -------------------------------------------------------------------------------- /berth/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalconSocial/berth/HEAD/berth/package.py -------------------------------------------------------------------------------- /berth/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalconSocial/berth/HEAD/berth/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML 2 | click 3 | docker-py 4 | -------------------------------------------------------------------------------- /sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalconSocial/berth/HEAD/sample.yaml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FalconSocial/berth/HEAD/setup.py --------------------------------------------------------------------------------