diff options
| author | Keith Yang <yang@keitheis.org> | 2016-07-16 16:28:25 +0800 |
|---|---|---|
| committer | Keith Yang <yang@keitheis.org> | 2016-07-21 23:06:38 +0800 |
| commit | 29d12cd3917c1a792c3a891e39ab15f99e8b380d (patch) | |
| tree | 01148c9e4df735dda25ea56e53d8d884394b9ff9 /docs/quick_tutorial/authentication/setup.py | |
| parent | 4841c104e5c717809bf7620ea653e5856595c845 (diff) | |
| download | pyramid-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.py | 3 |
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', |
