mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-29 16:20:11 -04:00
18 lines
313 B
Python
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',
|
|
],
|
|
}
|
|
}
|
|
)
|