├── .gitignore ├── MANIFEST.in ├── README.md ├── README.rst ├── TEMPLATE ├── .gitignore ├── MANIFEST.in ├── README.md ├── setup.py └── template │ ├── __init__.py │ ├── __main__.py │ └── template.py ├── bootstrappy ├── __init__.py ├── __main__.py └── bootstrappy.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.m4a 2 | *.pyc 3 | env/ 4 | build/ 5 | dist/ 6 | *.egg-info/ 7 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/bootstrappy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/bootstrappy/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/bootstrappy/HEAD/README.rst -------------------------------------------------------------------------------- /TEMPLATE/.gitignore: -------------------------------------------------------------------------------- 1 | *.m4a 2 | *.pyc 3 | env/ 4 | build/ 5 | dist/ 6 | *.egg-info/ 7 | -------------------------------------------------------------------------------- /TEMPLATE/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | -------------------------------------------------------------------------------- /TEMPLATE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/bootstrappy/HEAD/TEMPLATE/README.md -------------------------------------------------------------------------------- /TEMPLATE/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/bootstrappy/HEAD/TEMPLATE/setup.py -------------------------------------------------------------------------------- /TEMPLATE/template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TEMPLATE/template/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/bootstrappy/HEAD/TEMPLATE/template/__main__.py -------------------------------------------------------------------------------- /TEMPLATE/template/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/bootstrappy/HEAD/TEMPLATE/template/template.py -------------------------------------------------------------------------------- /bootstrappy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrappy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/bootstrappy/HEAD/bootstrappy/__main__.py -------------------------------------------------------------------------------- /bootstrappy/bootstrappy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/bootstrappy/HEAD/bootstrappy/bootstrappy.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blha303/bootstrappy/HEAD/setup.py --------------------------------------------------------------------------------