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

This commit is contained in:
rdb 2018-08-03 20:22:09 +02:00
parent 2a2b48134b
commit c959d274be

View File

@ -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()