forked from sh4nks/flask-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (24 loc) · 771 Bytes
/
Makefile
File metadata and controls
31 lines (24 loc) · 771 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
.PHONY: clean
help:
@echo " clean remove unwanted stuff"
@echo " release package and upload a release"
@echo " develop make a development package"
@echo " sdist package"
@echo " test run the tests"
clean:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '.DS_Store' -exec rm -f {} +
find . -name '__pycache__' -exec rm -rf {} +
find . -name '.coverage' -exec rm -rf {} +
release: register
python setup.py sdist upload
register:
python setup.py register
sdist:
python setup.py sdist
develop:
python setup.py develop
test:
nosetests --cover-package=flask_plugins --with-coverage