File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,3 +10,6 @@ transformers
1010labml_nn
1111labml_helpers
1212einops
13+ * .egg-info
14+ build
15+ dist
Original file line number Diff line number Diff line change 1+ clean : # # Clean
2+ rm -rf dist
3+ rm -rf build
4+ rm -rf * .egg-info
5+ rm -rf html
6+
7+ build : clean # # Build PIPy Package
8+ python setup.py sdist bdist_wheel
9+
10+ check-content : build # # List contents of PIPy Package
11+ tar -tvf dist/* .tar.gz
12+
13+ check : build # # Check PIPy Package
14+ twine check dist/*
15+
16+ upload : build # # Upload PIPy Package
17+ twine upload dist/*
18+
19+ install : # # Install from repo
20+ pip install -e .
21+
22+ uninstall : # # Uninstall
23+ pip uninstall labml_nn
24+
25+ help : # # Show this help.
26+ @fgrep -h " ##" $(MAKEFILE_LIST ) | fgrep -v fgrep | sed -e ' s/\\$$//' | sed -e ' s/##//'
27+
28+ .PHONY : clean build check upload help
29+ .DEFAULT_GOAL := help
You can’t perform that action at this time.
0 commit comments