forked from bitranox/wrapt_timeout_decorator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
29 lines (23 loc) · 1.1 KB
/
Makefile
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
## create virtual environment
venv:
echo "ToDo - MakeFile is still in Development, contact [email protected] if You need it"
## virtualenv venv
## install all needed for development
develop: venv
echo "ToDo - MakeFile is still in Development, contact [email protected] if You need it"
## venv/bin/python3 -m pip install -e . -r requirements_test.txt
## venv/bin/python3 -m pip install -e . -r requirements.txt
test:
echo "ToDo - MakeFile is still in Development, contact [email protected] if You need it"
install:
echo "ToDo - MakeFile is still in Development, contact [email protected] if You need it"
## clean the development environment
clean:
echo "ToDo - MakeFile is still in Development, contact [email protected] if You need it"
## -rm -rf venv
uninstall:
echo "ToDo - MakeFile is still in Development, contact [email protected] if You need it"
## -rm -rf venv
## ideas - create make targets for "normal" installation and virtual environments,
## and to be able to pass the virtual environment directory alternatively
## not a priority now, since there are many other ways to install this package