-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
63 lines (51 loc) · 1.44 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
PYTHON=python3
branch := $(shell git symbolic-ref --short -q HEAD)
help :
@echo "The following make targets are available:"
@echo " help - print this message"
@echo " build - build python package"
@echo " install - install python package (local user)"
@echo " sinstall - install python package (system with sudo)"
@echo " remove - remove the package (local user)"
@echo " sremove - remove the package (system with sudo)"
@echo " clean - remove any temporary files"
@echo " notebook - launch ipython3 notebook"
build :
$(PYTHON) setup.py sdist bdist_wheel
buildext :
$(PYTHON) setup.py build_ext --inplace
install :
$(PYTHON) setup.py install --user
sinstall :
sudo $(PYTHON) setup.py install
remove :
$(PYTHON) setup.py install --user --record files.txt
tr '\n' '\0' < files.txt | xargs -0 rm -f --
rm files.txt
sremove :
$(PYTHON) setup.py install --record files.txt
tr '\n' '\0' < files.txt | sudo xargs -0 rm -f --
rm files.txt
clean : FORCE
$(PYTHON) setup.py clean
uploadpypi :
#python setup.py register
$(PYTHON) setup.py sdist
twine upload dist/*
doc :
m2r README.md
mv README.rst docs/source/
cd docs/ && make html
doc_full :
m2r README.md
mv README.rst docs/source/
rm -rf docs/source/auto_examples/
rm -rf docs/source/modules/
rm -rf docs/build/
cd docs/ && make html
autopep8 :
autopep8 -ir pottok --jobs -1
aautopep8 :
autopep8 -air pottok --jobs -1
pytest :
pytest-3 -v --cov=pottok