setup.py 313 B

1234567891011121314151617
  1. from setuptools import setup
  2. import pytest
  3. setup(
  4. name="panda3d-tester",
  5. options={
  6. 'build_apps': {
  7. 'gui_apps': {
  8. 'tester': 'main.py',
  9. },
  10. 'plugins': [
  11. 'pandagl',
  12. 'p3openal_audio',
  13. ],
  14. }
  15. }
  16. )