-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0133ab6
commit 361e1c3
Showing
16 changed files
with
100 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,25 @@ | ||
all: test | ||
|
||
build: | ||
rm -rf dist | ||
python3 setup.py sdist | ||
|
||
doc: | ||
python setup.py build_sphinx | ||
test: | ||
poetry run tox | ||
|
||
install: | ||
python setup.py install | ||
poetry install | ||
|
||
develop: | ||
python setup.py develop | ||
install_editable: | ||
pip install -e . | ||
|
||
upload: | ||
pip3 install twine | ||
twine upload --skip-existing dist/* | ||
update: | ||
poetry lock | ||
poetry install | ||
|
||
readme: | ||
./_generate-readme.py | ||
build: | ||
poetry build | ||
|
||
test: | ||
tox | ||
publish: | ||
poetry build | ||
poetry publish | ||
|
||
docs: | ||
poetry run tox -e docs | ||
xdg-open docs/_build/index.html | ||
|
||
.PHONY: all build doc install develop upload readme test | ||
.PHONY: test install install_editable update build publish docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.