Преглед на файлове

deploy-ng: Add setup.py to the asteroids sample

Mitchell Stokes преди 9 години
родител
ревизия
ca036a56f2
променени са 1 файла, в които са добавени 8 реда и са изтрити 0 реда
  1. 8 0
      samples/asteroids/setup.py

+ 8 - 0
samples/asteroids/setup.py

@@ -0,0 +1,8 @@
+from direct.showutil.dist import *
+
+setup(
+    name="asteroids",
+    directories=['.'],
+    exclude_paths=['build', 'setup.py'],
+    applications=[Application('main.py', 'asteroids')],
+)