-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
66 lines (52 loc) · 1.3 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
63
64
65
66
PYTHON := python3
PACKAGE := SimpleSQLite
AUTHOR := thombashi
BUILD_WORK_DIR := _work
DOCS_DIR := docs
PKG_BUILD_DIR := $(BUILD_WORK_DIR)/$(PACKAGE)
.PHONY: build-remote
build-remote: clean
@mkdir -p $(BUILD_WORK_DIR)
@cd $(BUILD_WORK_DIR) && \
git clone https://github.com/$(AUTHOR)/$(PACKAGE).git --depth 1 && \
cd $(PACKAGE) && \
$(PYTHON) -m tox -e build
ls -lh $(PKG_BUILD_DIR)/dist/*
.PHONY: build
build: clean
@$(PYTHON) -m tox -e build
ls -lh dist/*
.PHONY: check
check:
@$(PYTHON) -m tox -e lint
.PHONY: clean
clean:
@rm -rf $(BUILD_WORK_DIR)
@$(PYTHON) -m tox -e clean
.PHONY: docs
docs:
@$(PYTHON) -m tox -e docs
.PHONY: run-sample
run-sample:
find sample/ -name "*.py" | \grep -v sample_create_table_from_gs.py | xargs -I{} $(PYTHON) {}
.PHONY: idocs
idocs:
@$(PYTHON) -m pip install -q --disable-pip-version-check --upgrade .
@$(MAKE) docs
.PHONY: fmt
fmt:
@$(PYTHON) -m tox -e fmt
.PHONY: readme
readme:
@$(PYTHON) -m tox -e readme
.PHONY: release
release:
cd $(PKG_BUILD_DIR) && $(PYTHON) setup.py release --sign --verbose
$(MAKE) clean
.PHONY: setup-ci
setup-ci:
@$(PYTHON) -m pip install -q --disable-pip-version-check --upgrade tox
.PHONY: setup
setup: setup-ci
$(PYTHON) -m pip install -q --disable-pip-version-check --upgrade -e .[test] releasecmd
-$(PYTHON) -m pip check