Skip to content

Commit

Permalink
fixes #47
Browse files Browse the repository at this point in the history
  • Loading branch information
timkpaine committed Aug 6, 2019
1 parent a14b652 commit 78c7162
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ build: ## build the package
python3 setup.py build

install: ## install the package
python3 setup.py install
pip3 install .

tests: ## Clean and Make unit tests
python3 -m pytest -v ./aat/tests --cov=aat
Expand Down Expand Up @@ -64,7 +64,10 @@ major: ## steps before dist, defaults to previous tag + one micro
. scripts/deploy.sh MAJOR

dist: ## dist to pypi
python3 setup.py sdist upload -r pypi
rm -rf dist build
python3 setup.py sdist
python3 setup.py bdist_wheel
twine check dist/* && twine upload dist/*

clean: ## clean the repository
find . -name "__pycache__" | xargs rm -rf
Expand Down

0 comments on commit 78c7162

Please sign in to comment.