瀏覽代碼

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

rdb 7 年之前
父節點
當前提交
c959d274be
共有 1 個文件被更改,包括 4 次插入1 次删除
  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
     # 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.
     # 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()
     ext_suffix = GetExtensionSuffix()