-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
31 lines (25 loc) · 1.2 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
30
31
## create virtual environment
## see: https://earthly.dev/blog/python-makefile/
venv:
echo "ToDo - MakeFile is still in Development, contact bitranox@gmail.com if You need it"
## virtualenv venv
## install all needed for development
develop: venv
echo "ToDo - MakeFile is still in Development, contact bitranox@gmail.com 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 bitranox@gmail.com if You need it"
install:
echo "ToDo - MakeFile is still in Development, contact bitranox@gmail.com if You need it"
## clean the development environment
clean:
echo "ToDo - MakeFile is still in Development, contact bitranox@gmail.com if You need it"
## -rm -rf venv
uninstall:
echo "ToDo - MakeFile is still in Development, contact bitranox@gmail.com 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
## see: https://earthly.dev/blog/python-makefile/