Skip to content

Commit

Permalink
[FEATURE] Project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
valentynbez committed Nov 2, 2022
1 parent 266fd8e commit 54a4706
Show file tree
Hide file tree
Showing 11 changed files with 2,294 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Makefile
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 added ci/recipe/meta.yaml
Empty file.
7 changes: 7 additions & 0 deletions q2_motus/__init__.py
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']
2 changes: 2 additions & 0 deletions q2_motus/_hello.py
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!")
Loading

0 comments on commit 54a4706

Please sign in to comment.