-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
134 lines (108 loc) · 3.19 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
.PHONY: clean clean-test clean-pyc clean-build docs help env test lint git patch minor major dist release
README = README.rst
PKG = gitone
ENV = venv
PYTHON = .venv/bin/python3
LINTER = black
DOCS = $(wildcard docs/source/*.rst docs/source/*.md docs/source/*.ipynb)
TESTS = $(wildcard tests/*.py)
SRC = $(wildcard src/$(PKG)/*.py)
init: .git/
env: .venv/bin/activate
docs: docs/index.html
.venv/bin/activate: requirements_dev.txt $(SRC)
ifneq ($(ENV), $(filter $(ENV),conda venv))
pip install $(ENV)
endif
ifeq ($(ENV), $(filter $(ENV),virtualenv venv))
test -d .venv || python -m $(ENV) .venv
endif
ifeq ($(ENV), conda)
test -d .venv || conda create -yp .venv python=3
endif
ifeq ($(ENV), pipenv)
test -d .venv || pipenv --three
pipenv install pip
pipenv install --requirement requirements_dev.txt
else
${PYTHON} -m pip install --requirement requirements_dev.txt
endif
touch .venv/bin/activate
test: env
ifeq ($(ENV), pipenv)
pipenv install pytest-mypy
else
${PYTHON} -m pip install pytest-mypy
endif
${PYTHON} -m pytest src tests
lint: env
ifeq ($(ENV), pipenv)
pipenv install $(LINTER)
else
${PYTHON} -m pip install $(LINTER)
endif
${PYTHON} -m $(LINTER) src tests
travis: .travis.yml
.venv/bin/travis encrypt --add deploy.password
docs/index.html: clean $(README) $(DOCS) $(TESTS) $(SRC) ## generate Sphinx HTML documentation, including API docs
# rm docs/*.html
# rm -rf docs/_modules docs/_sources docs/_static
mv docs html
sphinx-apidoc -fo html/source src/$(PKG) src/$(PKG)/a*.py src/$(PKG)/c*.py
sphinx-apidoc -fo html/source --tocfile tests tests
sphinx-build -M html html/source .
mv html docs
open docs/index.html
git:
git add --all
[ -z "`git status --porcelain`" ] || git commit -am "Bump version from `python setup.py --version`"
git push
patch: git
bumpversion patch
git push
minor: git
bumpversion minor
git push
major: git
bumpversion major
git push
## remove all build, test, coverage and Python artifacts
clean: clean-build clean-pyc clean-test
clean-docs:
rm -rf docs/*.html
rm -rf docs/_modules
rm -rf docs/searchindex.js
rm -rf docs/_sources
rm -rf docs/doctrees
rm -rf doctrees
clean-build: ## remove build artifacts
rm -fr build/
rm -fr dist/
rm -fr .eggs/
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +
clean-pyc: ## remove Python file artifacts
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +
clean-test: ## remove test and coverage artifacts
rm -fr .tox/
rm -f .coverage
rm -fr htmlcov/
rm -fr .pytest_cache
test-all: ## run tests on every Python version with tox
tox
coverage: ## check code coverage quickly with the default Python
coverage run --source $(PKG) -m pytest
coverage report -m
coverage html
$(BROWSER) htmlcov/index.html
servedocs: docs ## compile the docs watching for changes
watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .
release: dist ## package and upload a release
twine upload dist/*
dist: clean ## builds source and wheel package
python setup.py sdist bdist_wheel
install: clean ## install the package to the active Python's site-packages
python setup.py install