-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
18 lines (18 loc) · 602 Bytes
/
Makefile
File metadata and controls
18 lines (18 loc) · 602 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
format:
poetry run black .
poetry run isort .
poetry run autoflake --in-place --remove-unused-variables --remove-all-unused-imports --recursive .
poetry run flake8 .
format-check:
poetry run black --check .
poetry run isort --check .
poetry run autoflake --in-place --remove-unused-variables --remove-all-unused-imports --recursive --check .
poetry run flake8 .
test:
poetry run pytest --cov=src tests
create-cli:
poetry run pyinstaller src/noclockscli/__main__.py --onefile --name noclockscli
build-package:
poetry run python setup.py sdist
release-to-pypi:
poetry run twine upload dist/*