diff --git a/recipes/bubblegun/meta.yaml b/recipes/bubblegun/meta.yaml new file mode 100644 index 0000000000000..a97e641474c57 --- /dev/null +++ b/recipes/bubblegun/meta.yaml @@ -0,0 +1,40 @@ +{% set name = "BubbleGun" %} +{% set version = "1.1.9" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: "https://github.com/fawaz-dabbaghieh/bubble_gun/archive/refs/tags/v{{ version }}.tar.gz" + sha256: 005d61a1e5774dfec810e612c1b4c5ce6c8d15f80d131237590ef71f62704c94 + +build: + number: 0 + noarch: python + entry_points: + - BubbleGun=BubbleGun.main:main + script: {{ PYTHON }} -m pip install . --no-deps --no-build-isolation --no-cache-dir -vvv + run_exports: + - {{ pin_compatible('BubbleGun', max_pin="x") }} + +requirements: + host: + - python >=3.6 + - pip + - setuptools + run: + - python >=3.6 + +test: + commands: + - BubbleGun -h + +about: + home: "https://github.com/fawaz-dabbaghieh/bubble_gun" + license: MIT + license_family: MIT + license_file: LICENSE + summary: 'BubbleGun is a tool for detecting bubbles and superbubbles in GFA graphs, and reports them and their nested structures.' + doc_url: "https://github.com/fawaz-dabbaghieh/bubble_gun/blob/v{{ version }}/README.md" + dev_url: "https://github.com/fawaz-dabbaghieh"