From 225a3064cef975461aa117ef8be13ce56574c012 Mon Sep 17 00:00:00 2001 From: Massimo Di Pierro Date: Mon, 16 Aug 2021 05:48:09 -0700 Subject: [PATCH] version 1.20210816.1 --- py4web/__init__.py | 2 +- setup.py | 20 ++++++++++++++++---- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/py4web/__init__.py b/py4web/__init__.py index 58d218354..f804f61ff 100644 --- a/py4web/__init__.py +++ b/py4web/__init__.py @@ -2,7 +2,7 @@ __author__ = "Massimo Di Pierro " __license__ = "BSDv3" -__version__ = "1.20210814.1" +__version__ = "1.20210816.1" def _maybe_gevent(): diff --git a/setup.py b/setup.py index 6cc4873b8..1e4db26b1 100644 --- a/setup.py +++ b/setup.py @@ -23,10 +23,22 @@ def get_version(): description="Experimental py4web (a better web2py)", packages=["py4web", "py4web.utils", "py4web.utils.auth_plugins"], package_data={"py4web": ["assets/*"],}, - install_requires=[line for line in [ - line.split("#")[0].strip() - for line in open("requirements.txt").readlines() - ] if line], + install_requires=[ + "wheel", + "bottle >= 0.12", + "click", + "colorama", + "cryptography", + "tornado", + "renoir >= 1.4.0", + "requests", + "threadsafevariable >= 1.1", + "pyjwt >= 2.0.1", + "pluralize >= 0.1.7", + "yatl >= 20210326.1", + "pydal >= 20210626.3", + "watchgod >= 0.6", + ], entry_points={"console_scripts": ["py4web=py4web.core:cli"],}, zip_safe=False, platforms="any",