Skip to content

Commit 21bd8fe

Browse files
committed
update Makefile
1 parent 314670e commit 21bd8fe

1 file changed

Lines changed: 22 additions & 17 deletions

File tree

Makefile

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
install-requirements:
2-
python -m pip install -r ./requirements/requirements.in
3-
4-
install-test-requirements:
5-
python -m pip install -r ./requirements/requirements-test.in
6-
7-
install-build-requirements:
8-
python -m pip install -r ./requirements/requirements-build.in
9-
101
clean: clean-pyc clean-ipynb clean-catboost clean-build clean-test
112

123
clean-progress_board:
@@ -77,14 +68,28 @@ dist:
7768
python setup.py bdist_wheel
7869
ls -l dist
7970

80-
install:
81-
pip install .
71+
build:
72+
python -m build
73+
74+
install: build
75+
pip install dist/*.whl
76+
77+
uninstall:
78+
pip uninstall -y surfaces
79+
rm -fr build dist *.egg-info
8280

83-
develop:
81+
install-requirements:
82+
python -m pip install -r ./requirements/requirements.in
83+
84+
install-test-requirements:
85+
python -m pip install -r ./requirements/requirements-test.in
86+
87+
install-build-requirements:
88+
python -m pip install -r ./requirements/requirements-build.in
89+
90+
install-editable:
8491
pip install -e .
8592

86-
reinstall:
87-
pip uninstall -y hyperactive
88-
rm -fr build dist hyperactive.egg-info
89-
python setup.py bdist_wheel
90-
pip install dist/*
93+
reinstall: uninstall install
94+
95+
reinstall-editable: uninstall install-editable

0 commit comments

Comments
 (0)