1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Source: python-lua
Section: python
Priority: optional
Maintainer: Bas Wijnen <wijnen@debian.org>
Build-Depends: debhelper (>= 10), python3-all, python3-all-dev, dh-python, python3-setuptools, pybuild-plugin-pyproject, liblua5.4-dev, pkgconf
Standards-Version: 4.6.2
Package: python3-lua
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, ${python3:Depends}, liblua5.4-dev
Description: library for using Lua scripts from Python
This module provides an interface for using Lua scripts from Python.
From Python, it allows complete access to all Lua variables and function. From
Lua, it allows access to Python variables and functions that were passed to it
by Python.
.
By default, Lua contains several insecure features, such as access to the
host's file system. This module disables all such features by default. They
are only enabled if the user passes the corresponding parameters when
instantiating the Lua class.
|