forked from replit/polygott
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpygame.toml
55 lines (50 loc) · 875 Bytes
/
pygame.toml
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
54
55
name = "pygame"
entrypoint = "main.py"
extensions = [
"py"
]
languages = [
"python3"
]
packages = [
"gcc",
"libsdl-ttf2.0-dev",
"libevent-dev",
"libportmidi-dev",
"libsdl1.2-dev",
"libsdl-image1.2-dev",
"libsdl-mixer1.2-dev",
"libtk8.6",
"xfonts-base",
"xfonts-100dpi",
"xfonts-75dpi",
"xfonts-cyrillic",
"fontconfig",
"fonts-freefont-ttf",
"libfreetype6-dev",
]
popularity = 5.0
setup = [
"/opt/virtualenvs/python3/bin/python3 -m pip install pygame",
]
[run]
command = [
"python3",
"-B",
"main.py"
]
[tests]
[tests.0]
code = "print(__name__)"
output = "__main__\n"
[tests.hello]
code = "print(\"hello\")"
output = "hello\n"
[tests.pygame]
code = "import pygame"
output = "pygame 1.9.6\nHello from the pygame community. https://www.pygame.org/contribute.html\n"
[languageServer]
command = [
"pyls",
"-v"
]