Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
version 1.20210816.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mdipierro committed Aug 16, 2021
1 parent 595921c commit 225a306
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion py4web/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = "Massimo Di Pierro <[email protected]>"
__license__ = "BSDv3"
__version__ = "1.20210814.1"
__version__ = "1.20210816.1"


def _maybe_gevent():
Expand Down
20 changes: 16 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 225a306

Please sign in to comment.