-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
53 lines (52 loc) · 1.35 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup
setup(
name = "FPS Program",
version = "1.0.0",
options = {
"build_apps" : {
"include_patterns" : [
"**/*.png",
"**/*.ogg",
"**/*.txt",
"**/*.bam",
"**/*.dat",
"**/*.cur",
"**/*.ttf",
"**/*.glsl",
"**/*.vert",
"**/*.frag",
"fonts/*",
"textures/*",
],
"exclude_patterns" : [
"ModelViewer/*",
"build/*",
"dist/*",
".git/*",
"*__pycache__*",
"README.md",
"requirements.txt",
"setup.py"
],
"gui_apps" : {
"FPS Program" : "main.py"
},
"icons" : {
"FPS Program" : [
"icon/icon512.png"
]
},
"plugins" : [
"pandagl",
"p3openal_audio",
],
"platforms" : [
"manylinux2014_x86_64",
#"macosx_10_6_x86_64",
"win_amd64"
],
"log_filename" : "$USER_APPDATA/FPSProgram/output.log",
"log_append" : False
}
}
)