22 lines
461 B
Python
22 lines
461 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="SnakeTest",
|
|
options = {
|
|
'build_apps': {
|
|
'include_patterns': [
|
|
'data/*.png'
|
|
],
|
|
'gui_apps': {
|
|
'SnakeTest': 'SnakeTest.py',
|
|
},
|
|
'log_append': False,
|
|
'plugins': [
|
|
'pandagl',
|
|
'p3openal_audio',
|
|
],
|
|
'platforms':['manylinux1_x86_64']
|
|
}
|
|
}
|
|
)
|