In the examples directory, you can find some use cases and demonstrations of the mathematical capabilities of this small library. A small first-glance application is the implicit definition of functions (the square root for example):
from tenebris.solver import solve
sqrt = lambda t: solve(lambda x: x * x, t, 1)
print(sqrt(2)) # 1.414213562373095Install the library by installing the wheel file from dist
pip install tenebris-1.0-py2.py3-none-any.whlUse the following bash command to build the wheel file
python setup.py bdist_wheel --universal