We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f1c28b commit 6e82a59Copy full SHA for 6e82a59
1 file changed
Makefile
@@ -1,5 +1,5 @@
1
install:
2
- cd src/ && pip install -e .
+ pip3 install -e .
3
4
remove:
5
pip uninstall python3_capsolver -y
@@ -22,9 +22,13 @@ lint:
22
black src/ --check
23
isort src/ --check-only
24
25
+build:
26
+ pip3 install --upgrade build
27
+ python3 -m build
28
+
29
upload:
- pip install twine wheel
- cd src/ && python setup.py upload
30
+ pip3 install twine wheel build
31
+ twine upload dist/*
32
33
tests: install
34
coverage run --rcfile=.coveragerc -m pytest -vv --showlocals --pastebin=all \
0 commit comments