forked from buriy/python-readability
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
62 lines (49 loc) · 952 Bytes
/
Makefile
File metadata and controls
62 lines (49 loc) · 952 Bytes
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
# Makefile to help automate tasks
WD := $(shell pwd)
PY := bin/python
PIP := bin/pip
PEP8 := bin/pep8
NOSE := bin/nosetests
# ###########
# Tests rule!
# ###########
.PHONY: test
test: venv $(NOSE)
$(NOSE) --with-id -s src/tests
$(NOSE):
$(PY) setup.py test
# #######
# INSTALL
# #######
.PHONY: all
all: venv develop
venv: bin/python
bin/python:
virtualenv .
.PHONY: clean_venv
clean_venv:
rm -rf bin include lib local man share
.PHONY: develop
develop: lib/python*/site-packages/readability_lxml.egg-link
lib/python*/site-packages/readability_lxml.egg-link:
$(PY) setup.py develop
# ###########
# Development
# ###########
.PHONY: clean_all
clean_all: clean_venv
if [ -d dist ]; then \
rm -r dist; \
fi
# ###########
# Deploy
# ###########
.PHONY: dist
dist:
$(PY) setup.py sdist
.PHONY: upload
upload:
$(PY) setup.py sdist upload
.PHONY: version_update
version_update:
$(EDITOR) setup.py src/readability_lxml/__init__.py