-
Notifications
You must be signed in to change notification settings - Fork 57
/
justfile
29 lines (22 loc) · 949 Bytes
/
justfile
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
# version := `python3 -c "import tomli; c = tomli.load(open('pyproject.toml', 'rb')); print(c['project']['version'])"`
version := `python3 -c "from configparser import ConfigParser; p = ConfigParser(); p.read('setup.cfg'); print(p['metadata']['version'])"`
default:
@echo "\"make publish\"?"
tag:
@if [ "$(git rev-parse --abbrev-ref HEAD)" != "main" ]; then exit 1; fi
curl -H "Authorization: token `cat ~/.github-access-token`" -d '{"tag_name": "v{{version}}"}' https://api.github.com/repos/nschloe/pygalmesh/releases
upload: clean
@if [ "$(git rev-parse --abbrev-ref HEAD)" != "main" ]; then exit 1; fi
python3 -m build --sdist .
twine upload dist/*.tar.gz
publish: tag upload
clean:
@find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
@rm -rf src/*.egg-info/ build/ dist/ .tox/ pygalmesh.egg-info// builddir/
format:
isort .
black .
blacken-docs README.md
lint:
black --check .
flake8 setup.py pygalmesh/ tests/*.py