forked from raimon49/pip-licenses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
62 lines (51 loc) · 1.39 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
REPO_NAME:=$(shell basename -s .git `git remote get-url origin`)
VENV_NAME:='venv/$(REPO_NAME)'
DEV_DEPENDS:='dev-requirements'
.DEFAULT_GOAL:= help
.PHONY: help
help:
@echo 'Usage: make <subcommand>'
@echo ''
@echo 'Subcommands:'
@echo ' setup Setup for development'
@echo ' local-install Install locally'
@echo ' local-uninstall Uninstall locally'
@echo ' update-depends Re-compile requirements for development'
@echo ' lint Re-lint by black and isort with setup.cfg'
@echo ' test Run unittests'
@echo ' deploy Release to PyPI server'
@echo ' test-deploy Release to Test PyPI server'
@echo ' build Build package'
@echo ' clean Clean directories'
.PHONY: setup
setup:
test -d $(VENV_NAME) || python -m venv $(VENV_NAME)
$(VENV_NAME)/bin/python -m pip install -r $(DEV_DEPENDS).txt
.PHONY: local-install
local-install:
pip install -e .
.PHONY: local-uninstall
local-uninstall:
pip uninstall -y pip-licenses
.PHONY: update-depends
update-depends:
pip-compile -U $(DEV_DEPENDS).in
.PHONY: lint
lint:
black . --line-length=79
isort .
.PHONY: test
test:
python setup.py test
.PHONY: deploy
deploy: build
twine upload dist/*
.PHONY: test-deploy
test-deploy: build
twine upload -r pypitest dist/*
.PHONY: build
build: clean
python setup.py sdist bdist_wheel
.PHONY: clean
clean:
rm -rf dist