-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add optional build dependencies, instructions for building (#77)
* Add optional build dependencies * Add instructions for building * Add Makefile for convenience * Update README to point to dev dependencies
- Loading branch information
1 parent
d047737
commit c2f2cda
Showing
3 changed files
with
51 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
.PHONY: build | ||
build: | ||
python -m build | ||
|
||
.PHONY: release-test | ||
release-test: | ||
twine upload dist/* -r testpypi | ||
|
||
.PHONY: release | ||
release: | ||
twine upload dist/* -r pypi | ||
|
||
.PHONY: install | ||
install: | ||
pip install -e '.[dev,build]' | ||
|
||
.PHONY: uninstall | ||
uninstall: | ||
pip uninstall -y labkey |
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