Add build to makefile and wheel to dev requirements

This commit is contained in:
Pavle Portic 2021-10-14 00:03:11 +02:00
parent f1b310f877
commit f410f7d302
Signed by: TheEdgeOfRage
GPG Key ID: F2AB38285780DE3D
2 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,9 @@ validate: flake8 mypy isort
coverage:
python -m pytest --cov $(CURDIR)/$(NAME) --cov-report html
build:
python setup.py sdist bdist_wheel
clean:
rm -rf $(CURDIR)/build
rm -rf $(CURDIR)/dist

View File

@ -4,3 +4,4 @@ jedi==0.*
mypy==0.*
pytest==6.2.*
pytest-mock==3.6.*
wheel==0.37.*