Add django-stronghold as dependency

This commit is contained in:
Sunil Mohan Adapa 2015-07-01 21:43:07 +05:30
parent 6fd04808d5
commit 124656b5ba
4 changed files with 6 additions and 2 deletions

View File

@ -118,6 +118,8 @@ infrastructure in place for it from the start. Use it like this:
* *Django* - Web application framework for Plinth
* *Django Stronghold* - Middleware to make all views default login required
* *JQuery* - Javascript framework used for convenience
* *Modernizer* - HTML5 and CSS3 feature detection

View File

@ -5,8 +5,8 @@
On a Debian based system, run:
$ sudo apt-get install libjs-jquery libjs-modernizr libjs-bootstrap \
make pandoc python3 python3-cherrypy3 python3-coverage \
python3-django python3-bootstrapform python3-gi \
make pandoc python3 python3-bootstrapform python3-cherrypy3 \
python3-coverage python3-django python3-django-stronghold python3-gi \
python3-setuptools python3-yaml gir1.2-glib-2.0 gir1.2-networkmanager-1.0 \
gir1.2-packagekitglib-1.0

View File

@ -1,4 +1,5 @@
cherrypy >= 3.0
coverage >= 3.7
django >= 1.7.0
django-stronghold
pyyaml

View File

@ -115,6 +115,7 @@ setuptools.setup(
'cherrypy >= 3.0',
'django >= 1.7.0',
'django-bootstrap-form',
'django-stronghold',
'pyyaml',
],
tests_require=['coverage >= 3.7'],