FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
models/Makefile at develop · sql-machine-learning/models · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
sql-machine-learning
/
models
Public
Notifications
You must be signed in to change notification settings
Fork
17
Star
37
Code
Issues
7
Pull requests
5
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
models
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (16 loc) · 550 Bytes
Breadcrumbs
models
/
Makefile
Copy path
File metadata and controls
22 lines (16 loc) · 550 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
SHELL
:= /bin/bash
setup
:
#
# Setup virtual environment for local development
python3 -m venv venv
source
venv/bin/activate
&&
\
pip install -U pip
&&
\
$(
MAKE
)
install-requirements
install-requirements
:
pip install -U -e
.
test
:
#
# Run tests
python3 setup.py
test
clean
:
#
# Clean up temporary folders
rm -rf build dist .eggs
*
.egg-info .pytest_cache sqlflow/proto
help
:
@grep -E
'
^[a-zA-Z_-]+:.*?## .*$$
'
$(
MAKEFILE_LIST
)
|
awk
'
BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}
'
.PHONY
: help
.DEFAULT_GOAL
:= help
Back
|
FazBrowse Home
|
New Git URL