Installer.py für spätere Anwendung. Funktioniert derzeit noch nicht unter Linux-Umgebung

This commit is contained in:
2023-12-19 15:01:20 +01:00
parent d10f22dbb6
commit 378d6ce69e
2 changed files with 22 additions and 0 deletions

1
requirements.txt Normal file
View File

@@ -0,0 +1 @@
panda3d

21
setup.py Normal file
View 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']
}
}
)