forked from vincentbernat/snimpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
55 lines (43 loc) · 1.36 KB
/
Makefile
File metadata and controls
55 lines (43 loc) · 1.36 KB
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
.PHONY: clean-pyc clean-build docs
open := $(shell { which xdg-open || which open; } 2>/dev/null)
help:
@echo "Please use \`make <target>' where <target> is one of"
@echo " clean-build to remove build artifacts"
@echo " clean-pyc to remove Python file artifacts"
@echo " lint to check style with flake8"
@echo " test to run tests quickly with the default Python"
@echo " testall to run tests on every Python version with tox"
@echo " coverage to check code coverage quickly with the default Python"
@echo " docs to generate Sphinx HTML documentation, including API docs"
@echo " release to package and upload a release"
@echo " sdist to package"
clean: clean-build clean-pyc
clean-build:
rm -fr build/
rm -fr dist/
rm -fr *.egg-info
clean-pyc:
find . -name '*.pyc' -type f -exec rm -f {} +
find . -name '*.pyo' -type f -exec rm -f {} +
find . -name '*~' -type f -exec rm -f {} +
find . -name '__pycache__' -type d -exec rm -rf {} +
lint:
flake8 snimpy tests
test:
python -m nose
test-all:
tox
coverage:
coverage run --source snimpy setup.py test
coverage report -m
coverage html
$(open) htmlcov/index.html
docs:
$(MAKE) -C docs clean
$(MAKE) -C docs html
$(open) docs/_build/html/index.html
release: clean
python setup.py sdist upload
sdist: clean
python setup.py sdist
ls -l dist