Skip to content

Commit

Permalink
Add __version__, __author__ and __email__ to module
Browse files Browse the repository at this point in the history
  • Loading branch information
touilleMan committed Jul 2, 2017
1 parent 66b74ee commit a95ad39
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pythonscript/cffi_bindings/mod_godot.inc.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
import builtins

__version__ = '0.8.0'
__author__ = 'Emmanuel Leblond'
__email__ = '[email protected]'

__exposed_classes = {}
__exposed_classes_per_module = {}
Expand Down Expand Up @@ -185,6 +187,9 @@ def __copy__(self):


module = imp.new_module("godot")
module.__version__ = __version__
module.__author__ = __author__
module.__email__ = __email__
module.signal = signal
module.export = export
module.exposed = exposed
Expand Down

0 comments on commit a95ad39

Please sign in to comment.