From d33de6058cf1165bbe3495ef9bb9ed1d4cb7a467 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Fri, 20 Mar 2020 09:03:18 +0100 Subject: [PATCH] added requirements for pylons app --- pyproject.toml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a730320..5bb8e84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,10 +24,16 @@ classifiers = [ ] requires = [ - "pyramid >= 1.10", "passlib[argon2] >= 1.7.2", + "pyramid >= 1.10", + "pyramid_debugtoolbar >= 4.6.1", + "pyramid_jinja2 >= 2.7", + "pyramid_mailer >= 0.15.1", + "pyramid_tm >= 2.4", "sqlalchemy >= 1.3.15", - + "transaction >= 3.0.0", + "waitress >= 1.4.3", + "zope.sqlalchemy >= 1.3", ] requires-python = ">=3.7" @@ -37,6 +43,7 @@ test = [ "pytest-cov", "pytest-mock", "tox", + "WebTest >= 2.0.34", ] dev = [ "black",