Browse Source

makewheel: add __version__ and docstring to panda3d/__init__.py

rdb 7 years ago
parent
commit
c959d274be
1 changed files with 4 additions and 1 deletions
  1. 4 1
      makepanda/makewheel.py

+ 4 - 1
makepanda/makewheel.py

@@ -488,7 +488,10 @@ def makewheel(version, output_dir, platform=default_platform):
 
     # Write the panda3d tree.  We use a custom empty __init__ since the
     # default one adds the bin directory to the PATH, which we don't have.
-    whl.write_file_data('panda3d/__init__.py', '')
+    whl.write_file_data('panda3d/__init__.py', """"Python bindings for the Panda3D libraries"
+
+__version__ = '{0}'
+""".format(version))
 
     ext_suffix = GetExtensionSuffix()