forked from replit/polygott
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython.toml
41 lines (37 loc) · 787 Bytes
/
python.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
name = "python"
entrypoint = "main.py"
extensions = [
"py"
]
packages = [
"python-pip",
"python-wheel",
"python-dev",
"libtk8.6",
"python-dev",
"libevent-dev",
"gcc",
"python-tk",
"tk-dev"
]
setup = [
"wget https://storage.googleapis.com/container-bins/stderred_1.0_amd64.deb && dpkg -i stderred_1.0_amd64.deb && rm stderred_1.0_amd64.deb",
"pip2 install -U setuptools",
"pip2 install -U configparser",
"pip2 install --no-cache-dir pipreqs-amasad==0.4.10 jedi==0.12.1 pyflakes==2.0.0 rope==0.11.0 yapf==0.25.0 mccabe==0.6.1 nltk numpy scipy requests matplotlib bpython ptpython",
]
[run]
command = [
"python2",
"-B",
"main.py"
]
[tests]
[tests.hello]
code = "print \"hello\""
output = "hello\n"
[languageServer]
command = [
"pyls",
"-v"
]