summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/authentication/setup.py
diff options
context:
space:
mode:
authorKeith Yang <yang@keitheis.org>2016-07-16 16:28:25 +0800
committerKeith Yang <yang@keitheis.org>2016-07-21 23:06:38 +0800
commit29d12cd3917c1a792c3a891e39ab15f99e8b380d (patch)
tree01148c9e4df735dda25ea56e53d8d884394b9ff9 /docs/quick_tutorial/authentication/setup.py
parent4841c104e5c717809bf7620ea653e5856595c845 (diff)
downloadpyramid-29d12cd3917c1a792c3a891e39ab15f99e8b380d.tar.gz
pyramid-29d12cd3917c1a792c3a891e39ab15f99e8b380d.tar.bz2
pyramid-29d12cd3917c1a792c3a891e39ab15f99e8b380d.zip
Add one-way password hash to security example in Quick Tutorial.
Diffstat (limited to 'docs/quick_tutorial/authentication/setup.py')
-rw-r--r--docs/quick_tutorial/authentication/setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/quick_tutorial/authentication/setup.py b/docs/quick_tutorial/authentication/setup.py
index 2221b72e9..7a6ff4226 100644
--- a/docs/quick_tutorial/authentication/setup.py
+++ b/docs/quick_tutorial/authentication/setup.py
@@ -2,7 +2,8 @@ from setuptools import setup
requires = [
'pyramid',
- 'pyramid_chameleon'
+ 'pyramid_chameleon',
+ 'bcrypt'
]
setup(name='tutorial',