File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
SHELL := /bin/bash
2
- PROJ_NAME =vba_parser
2
+ PROJ_NAME =wake
3
+ VENV_NAME =.venv
3
4
4
5
# If the first argument is "rename"...
5
6
ifeq (rename,$(firstword $(MAKECMDGOALS ) ) )
@@ -23,20 +24,19 @@ rename: ## Rename this project. Args: <new-proj-name>
23
24
[ -f " $$ f" ] && sed -i ' s/$(PROJ_NAME)/$(RUN_ARGS)/g' $$ f; \
24
25
done
25
26
26
-
27
27
init : # # Install package and its dependencies into virtual environment
28
- python -m venv .venv
29
- source .venv /bin/activate \
28
+ python -m venv $( VENV_NAME )
29
+ source $( VENV_NAME ) /bin/activate \
30
30
&& python -m pip install --upgrade pip \
31
31
&& pip install -r requirements-dev.txt \
32
32
&& pip install -e .
33
33
34
34
run : # # Run example
35
- source .venv /bin/activate \
35
+ source $( VENV_NAME ) /bin/activate \
36
36
&& python -m example
37
37
38
38
clean : # # Clean virtual environment
39
- rm -rf .venv
39
+ rm -rf $( VENV_NAME )
40
40
rm -rf src/$(PROJ_NAME ) .egg-info
41
41
find . -name " __pycache__" -type d -exec rm -rf {} +
42
42
find . -name " .pytest_cache" -type d -exec rm -rf {} +
Original file line number Diff line number Diff line change 1
1
# wake
2
2
Build tool for windows, similar to ` make `
3
3
4
- ![ alt text] ( https://github.com/stanislavsabev/wake/blob/main/wake.jpg?raw=true )
4
+ ![ alt text] ( https://github.com/stanislavsabev/wake/blob/main/assets/ wake.jpg?raw=true )
5
5
6
6
** NOTE:** Still in progress
7
7
You can’t perform that action at this time.
0 commit comments