1config BR2_PACKAGE_PYTHON_WEB2PY 2 bool "python-web2py" 3 select BR2_PACKAGE_PYTHON_PYDAL # runtime 4 select BR2_PACKAGE_PYTHON3_ZLIB # runtime 5 select BR2_PACKAGE_PYTHON3_PYEXPAT # runtime 6 select BR2_PACKAGE_PYTHON3_SQLITE # runtime 7 select BR2_PACKAGE_PYTHON_YATL # runtime 8 help 9 web2py is a free open source full-stack framework for rapid 10 development of fast, scalable, secure and portable 11 database-driven web-based applications. 12 13 http://web2py.com 14 15if BR2_PACKAGE_PYTHON_WEB2PY 16 17config BR2_PACKAGE_PYTHON_WEB2PY_INSTALL_ADMIN 18 bool "install admin panel application" 19 default y 20 help 21 This option install web2py admin panel application. 22 It can be removed to save space on embedded systems. 23 24if BR2_PACKAGE_PYTHON_WEB2PY_INSTALL_ADMIN 25 26config BR2_PACKAGE_PYTHON_WEB2PY_PASSWORD 27 string "admin panel password" 28 default web2py 29 help 30 Set the admin panel password. 31 32endif 33 34endif 35