File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 1
1
__pycache__ /
2
2
._ *
3
3
.idea /
4
+ .vscode /
4
5
5
6
# Build
6
7
build /
Original file line number Diff line number Diff line change 9
9
import shutil
10
10
import sys
11
11
12
- assert len (sys .argv ) == 2 , 'Argument is required, usage: build.py pip/twine/gource '
12
+ assert len (sys .argv ) == 2 , 'Argument is required, usage: build.py pip/twine'
13
13
mode = sys .argv [1 ].strip ()
14
14
15
15
if mode == 'pip' :
29
29
else :
30
30
raise FileNotFoundError ('Not distribution been found, execute build.py pip' )
31
31
32
- elif mode == 'gource' :
33
- os .system ('gource -s 0.25 --title PyMultiDictionary --disable-auto-rotate --key '
34
- '--highlight-users --disable-bloom --multi-sampling -w --transparent --path ./' )
35
-
36
32
else :
37
33
raise ValueError (f'Unknown mode { mode } ' )
You can’t perform that action at this time.
0 commit comments