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

Commit

Permalink
version 1.20210814.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mdipierro committed Aug 15, 2021
1 parent 50510be commit ecf4fa8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 21 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.20210807.1"
__version__ = "1.20210814.1"


def _maybe_gevent():
Expand Down
11 changes: 7 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
wheel
bottle >= 0.12
click
colorama
cryptography
tornado
gunicorn
gevent
gevent-websocket
renoir >= 1.4.0
requests
threadsafevariable >= 1.1
pyjwt >= 2.0.1
pluralize >= 0.1.7
yatl >= 20210326.1
pydal >= 20210626.3
python-memcached # used for testing or for optionally actually accessing memcache
watchgod >= 0.6

# optional modules:
# gunicorn
# gevent
# gevent-websocket
# python-memcached # used for testing or for optionally actually accessing memcache

### for documentation only ###
# use also docs/requirements.txt
20 changes: 4 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,10 @@ def get_version():
description="Experimental py4web (a better web2py)",
packages=["py4web", "py4web.utils", "py4web.utils.auth_plugins"],
package_data={"py4web": ["assets/*"],},
install_requires=[
"bottle>=0.12",
"click",
"colorama",
"cryptography",
"tornado",
"gevent",
"gevent-websocket",
"requests",
"threadsafevariable>=1.1",
"pyjwt>=2.0.1",
"pluralize>=0.1.6",
"yatl>=20210326.1",
"pydal>=20200910.1",
"watchgod>=0.6",
],
install_requires=[line for line in [
line.split("#")[0].strip()
for line in open("requirements.txt").readlines()
] if line],
entry_points={"console_scripts": ["py4web=py4web.core:cli"],},
zip_safe=False,
platforms="any",
Expand Down

0 comments on commit ecf4fa8

Please sign in to comment.