-
Notifications
You must be signed in to change notification settings - Fork 1
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
266fd8e
commit 54a4706
Showing
11 changed files
with
2,294 additions
and
0 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,24 @@ | ||
.PHONY: all lint test test-cov install dev clean distclean | ||
|
||
PYTHON ?= python | ||
|
||
all: ; | ||
|
||
lint: | ||
flake8 | ||
|
||
test: all | ||
py.test | ||
|
||
test-cov: all | ||
py.test --cov=q2_motus | ||
|
||
install: | ||
$(PYTHON) setup.py install | ||
|
||
dev: all | ||
pip install -e . | ||
|
||
clean: distclean | ||
|
||
distclean: ; |
Empty file.
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,7 @@ | ||
from ._hello import print_hello | ||
from ._version import get_versions | ||
|
||
__version__ = get_versions()['version'] | ||
del get_versions | ||
|
||
__all__ = ['print_hello'] |
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,2 @@ | ||
def print_hello(output_dir: str) -> None: | ||
print(f"Hello Qiime2!") |
Oops, something went wrong.