mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
25 lines
501 B
Python
25 lines
501 B
Python
from setuptools import setup
|
|
import pytest
|
|
|
|
setup(
|
|
name="panda3d-tester",
|
|
options = {
|
|
'build_apps': {
|
|
'gui_apps': {
|
|
'tester': 'main.py',
|
|
},
|
|
'plugins': [
|
|
'pandagl',
|
|
'p3openal_audio',
|
|
],
|
|
},
|
|
'platforms': [
|
|
'manylinux1_x86_64',
|
|
'macosx_10_6_x86_64',
|
|
'win32',
|
|
'win_amd64',
|
|
],
|
|
}
|
|
}
|
|
)
|