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

1
setup.py

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