Browse Source

added requirement for pyramid mailer

php2python
Holger Frey 7 years ago
parent
commit
99bf420f51
  1. 6
      development.ini
  2. 1
      setup.py

6
development.ini

@ -12,6 +12,7 @@ pyramid.debug_notfound = false @@ -12,6 +12,7 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.default_locale_name = en
pyramid.includes =
pyramid_mailer.debug
pyramid_debugtoolbar
sqlalchemy.url = sqlite:///%(here)s/ordr2.sqlite
@ -20,6 +21,11 @@ sqlalchemy.url = sqlite:///%(here)s/ordr2.sqlite @@ -20,6 +21,11 @@ sqlalchemy.url = sqlite:///%(here)s/ordr2.sqlite
# '127.0.0.1' and '::1'.
# debugtoolbar.hosts = 127.0.0.1 ::1
# email delivery
mail.host = localhost
mail.port = 2525
mail.default_sender = ordr@example.com
# custom settings
auth.secret = 'Change Me 1'

1
setup.py

@ -16,6 +16,7 @@ requirements = [ @@ -16,6 +16,7 @@ requirements = [
'pyramid_jinja2',
'pyramid_debugtoolbar',
'pyramid_tm',
'pyramid_mailer',
'SQLAlchemy',
'transaction',
'zope.sqlalchemy',