Commit cc8f2ad0 authored by Yuanle Song's avatar Yuanle Song
Browse files

v0.11.0 add "make pipfreeze"

this will run "pip freeze" command.
parent d8b53cb2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
(defproject python/lein-template "0.10.1"
(defproject python/lein-template "0.11.0"
  :description "lein template for a python project"
  :repositories [["snapshots"
                  {:url "http://devserv.game.yy.com/nexus/content/repositories/snapshots"
+3 −1
Original line number Diff line number Diff line
@@ -41,6 +41,8 @@ uninstall: bootstrap
	$(PIP) uninstall {{name}}    # TODO not tested.
deb:
	utils/build-deb
pipfreeze:
	$(PIP) freeze
wheel: bootstrap-dev
	@echo "building wheelhouse..."
	$(PIP) install wheel
@@ -75,4 +77,4 @@ install-git-hooks-force:
loc:
	find . -regex '.*\.pyw?$$' -exec wc -l {} \+ | tail -n 1
	which cloc >/dev/null && cloc {{name}}/
.PHONY: default build debug run uwsgi shell venv bootstrap bootstrap-dev install uninstall deb wheel check check-coding-style pylint-full test clean full-clean TAGS update-git-hooks install-git-hooks install-git-hooks-force loc
.PHONY: default build debug run uwsgi shell venv bootstrap bootstrap-dev install uninstall deb pipfreeze wheel check check-coding-style pylint-full test clean full-clean TAGS update-git-hooks install-git-hooks install-git-hooks-force loc