-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
32 lines (23 loc) · 781 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
.DEFAULT_GOAL=ls
ls: # List available commands
@grep '^[^#[:space:]].*:' Makefile
freeze: # Show installed dependencies
@pip freeze
format: # Black format and isort imports
@black . && isort .
install: # Install py dependencies
@pip install -e ".[tests]"
install-pipenv: # Install py dependencies using pipenv
@pipenv install -e ".[tests]"
test: # Run tests
@bash run-tests.sh
# Packagin
package-create: # Package to tar.gz file for uploading to pypi
rm -rf dist
./increment_version.sh invenio_config_kth/__init__.py $(ARG)
@python setup.py sdist
@twine check dist/*
package-check: # Check package if it pass pypi tests
@twine check dist/*
package-upload: # upload to pypi after prompting your user and pass
twine upload -u $(USER) -p $(PASS) dist/* --verbose