Add --admin params to bootstrap / installer to set up admin accts

This removes a big step requiring file changes from the quickstart
path. You can specify the admin username on the commandline.
This commit is contained in:
yuvipanda
2018-07-03 16:18:32 -07:00
parent 2b20a0b766
commit 154cc00a31
3 changed files with 73 additions and 16 deletions

View File

@@ -11,6 +11,7 @@ setup(
packages=find_packages(),
include_package_data=True,
install_requires=[
'pyyaml==3.*'
'pyyaml==3.*',
'ruamel.yaml==0.15.*'
]
)