Skip to content

Commit

Permalink
Fix makefile remove poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackndo committed Oct 12, 2021
1 parent 556de5c commit 0a11480
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@ clean:
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -rf {} +

publish: clean build
poetry publish
publish: clean
python3.7 setup.py sdist bdist_wheel
python3.7 -m twine upload dist/*

testpublish: clean build
poetry config repositories.testpypi https://test.pypi.org/legacy/
poetry publish --repository testpypi
testpublish: clean
python3.7 setup.py sdist bdist_wheel
python3.7 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*

package: clean
python setup.py install
pyinstaller ./lsassy/console.py --onefile --clean -n lsassy --additional-hooks-dir=hooks

rebuild: clean
poetry install
python3.7 setup.py install

build: clean
poetry build
python3.7 setup.py install

install:
poetry install
install: build

test:
nox -r
python3.7 setup.py test

0 comments on commit 0a11480

Please sign in to comment.