mirror of
https://github.com/panda3d/panda3d.git
synced 2026-05-06 14:40:26 -05:00
makewheel: add pandac/input/*.in interrogatedb files
These are present in the normal SDK builds and are useful for analyzing the API, for example for generating FFI code or generating API documentation.
This commit is contained in:
@@ -665,6 +665,13 @@ __version__ = '{0}'
|
||||
if file.endswith('.py'):
|
||||
whl.write_file('pandac/' + file, os.path.join(pandac_dir, file))
|
||||
|
||||
# Let's also add the interrogate databases.
|
||||
input_dir = os.path.join(pandac_dir, 'input')
|
||||
if os.path.isdir(input_dir):
|
||||
for file in os.listdir(input_dir):
|
||||
if file.endswith('.in'):
|
||||
whl.write_file('pandac/input/' + file, os.path.join(input_dir, file))
|
||||
|
||||
# Add a panda3d-tools directory containing the executables.
|
||||
entry_points = '[console_scripts]\n'
|
||||
entry_points += 'eggcacher = direct.directscripts.eggcacher:main\n'
|
||||
|
||||
Reference in New Issue
Block a user