Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/openalea/lpy_wralea/__wralea__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
from openalea.core import *
#from .lpy_nodes import WithLpyGui

__name__ = "vplants.l-py"
__version__ = '0.0.1'
__name__ = "openalea.l-py"
__version__ = '0.1.0'
__license__ = 'CECILL-C'
__authors__ = 'Frederic Boudon'
__institutes__ = 'INRIA/CIRAD'
__description__ = "An L-system engine providing a python interface."
__url__ = 'http://openalea.gforge.inria.fr'
__alias__ = ['vplants.l-py']

__all__ = []

Expand Down
2 changes: 1 addition & 1 deletion src/openalea/lpy_wralea/lpy_nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from openalea.lpy import Lsystem,AxialTree,generateScene
from openalea.plantgl.all import Viewer,PglTurtle
from openalea.vpltk.qt import QtCore
from qtpy import QtCore

def is_file(str):
return os.path.isfile(str)
Expand Down
Loading