forked from psf/cachecontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
56 lines (41 loc) · 959 Bytes
/
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
VENV = .venv
ACTIVATE = $(VENV)/bin/activate
CHEESE=https://pypi.python.org/pypi
BUMPTYPE=patch
virtualenv:
virtualenv $(VENV)
$(VENV)/bin/pip:
virtualenv $(VENV)
bootstrap: $(VENV)/bin/pip
$(VENV)/bin/pip install -r dev_requirements.txt
doc: $(VENV)/bin/sphinx-build
. $(ACTIVATE);
cd docs && make html
clean: clean-build clean-pyc clean-test
clean-build:
rm -fr build/
rm -fr dist/
rm -fr *.egg-info
clean-pyc:
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:
rm -fr .tox/
rm -f .coverage
rm -fr htmlcov/
test-all:
tox
test:
$(VENV)/bin/py.test
coverage:
$(VENV)/bin/py.test --cov cachecontrol
release: clean
$(VENV)/bin/python setup.py sdist register -r $(CHEESE) upload -r $(CHEESE)
dist: clean
python setup.py sdist
ls -l dist
bump:
$(VENV)/bin/bumpversion $(BUMPTYPE)
git push && git push --tags