├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CHANGELOG ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── mypackage ├── __init__.py └── myapp.py ├── requirements.txt ├── setup.py └── tests └── test_sayhello.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | #Your application changelog goes here -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /mypackage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/mypackage/__init__.py -------------------------------------------------------------------------------- /mypackage/myapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/mypackage/myapp.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_sayhello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirang89/bootstrapy/HEAD/tests/test_sayhello.py --------------------------------------------------------------------------------