Browse Source

asteroid sample: Add requirements.txt and wheels to setup.py exclude_paths

Mitchell Stokes 9 years ago
parent
commit
de598d966b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      samples/asteroids/setup.py

+ 1 - 1
samples/asteroids/setup.py

@@ -3,7 +3,7 @@ from direct.showutil.dist import *
 setup(
 setup(
     name="asteroids",
     name="asteroids",
     directories=['.'],
     directories=['.'],
-    exclude_paths=['build', 'setup.py'],
+    exclude_paths=['build', 'setup.py', 'requirements.txt', 'wheels'],
     applications=[Application('main.py', 'asteroids')],
     applications=[Application('main.py', 'asteroids')],
     deploy_platforms=['linux_x86_64'],
     deploy_platforms=['linux_x86_64'],
 )
 )