panda3d/tests/setup.py

18 lines
313 B
Python

from setuptools import setup
import pytest
setup(
name="panda3d-tester",
options={
'build_apps': {
'gui_apps': {
'tester': 'main.py',
},
'plugins': [
'pandagl',
'p3openal_audio',
],
}
}
)