Skip to content

Commit 6e82a59

Browse files
author
Andrei
committed
Update Makefile
1 parent 6f1c28b commit 6e82a59

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

Makefile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
install:
2-
cd src/ && pip install -e .
2+
pip3 install -e .
33

44
remove:
55
pip uninstall python3_capsolver -y
@@ -22,9 +22,13 @@ lint:
2222
black src/ --check
2323
isort src/ --check-only
2424

25+
build:
26+
pip3 install --upgrade build
27+
python3 -m build
28+
2529
upload:
26-
pip install twine wheel
27-
cd src/ && python setup.py upload
30+
pip3 install twine wheel build
31+
twine upload dist/*
2832

2933
tests: install
3034
coverage run --rcfile=.coveragerc -m pytest -vv --showlocals --pastebin=all \

0 commit comments

Comments
 (0)