blob: fffa74afad10e7fc4258e48d1783493939c28154 (
plain)
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
|
all:
cat Makefile
bencoder:
python3 setup.py build_ext --inplace
release:
make clean
#make tox
make clean
make push
make bump
make push
make pypi
make clean
tox:
tox
bump:
bumpversion minor
push:
git push
git push --tags
pypi:
python3 setup.py register
python3 setup.py sdist upload
clean:
rm -rf build site dist pkg src *.egg-info kvmd-*.tar.gz
find -name __pycache__ | xargs rm -rf
clean-all: clean
rm -rf .tox .mypy_cache
|