Installer.py für spätere Anwendung. Funktioniert derzeit noch nicht unter Linux-Umgebung
This commit is contained in:
1
requirements.txt
Normal file
1
requirements.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
panda3d
|
||||||
21
setup.py
Normal file
21
setup.py
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
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']
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user