-
Notifications
You must be signed in to change notification settings - Fork 10
/
Makefile
48 lines (31 loc) · 806 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
clean: clean-pyc clean-cython
distclean: clean-pyc clean-cython clean-build-artifacts
rebuild: distclean cython
dist: rebuild sdist twine-upload
upload: bump dist
git push
bigupload: bigbump dist
git push
clean-pyc:
find . -name \*.pyc -print -delete
clean-cython:
find . -name \*.so -print -delete
clean-build-artifacts:
rm -rf build dist instakit.egg-info
cython:
python setup.py build_ext --inplace
sdist:
python setup.py sdist
twine-upload:
twine upload -s dist/*
bump:
bumpversion --verbose patch
bigbump:
bumpversion --verbose minor
check:
check-manifest -v
python setup.py check -m -s
travis lint .travis.yml
.PHONY: clean-pyc clean-cython clean-build-artifacts
.PHONY: clean distclean rebuild dist upload bigupload
.PHONY: cython sdist twine-upload bump bigbump check