Browse Source

added deform to required packages

master
Holger Frey 7 years ago
parent
commit
c127fe6816
  1. 3
      docs/installation.rst
  2. 1
      setup.py

3
docs/installation.rst

@ -57,6 +57,9 @@ Dependencies @@ -57,6 +57,9 @@ Dependencies
These are the top-level packages that are needed by the webapp and why. They
rely propably on other packages as well.
deform
form rendering and validation library
passlib[argon2, bcrypt]
password hashing library with argon2 and bcrypt support

1
setup.py

@ -12,6 +12,7 @@ with open('HISTORY.rst') as history_file: @@ -12,6 +12,7 @@ with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
'deform',
'passlib[argon2, bcrypt]',
'pyramid',
'pyramid_jinja2',