Skip to content

Commit

Permalink
fix: additional build.yaml changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dnousome committed Nov 19, 2024
1 parent a430a1e commit 9ce17e3
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
15 changes: 15 additions & 0 deletions bin/hello-world.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env python

"""
Example script that could be used by a nextflow process
"""

import sys


def main():
print("Hello world!")


if __name__ == "__main__":
main(sys.argv)
7 changes: 7 additions & 0 deletions bin/logan
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
# script that allows the CLI to work out-of-the-box
# without the need to install it via pip first

TOOLDIR=$(realpath $(dirname $(dirname ${BASH_SOURCE})))

${TOOLDIR}/main.py "$@"
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
requires-python = ">=3.8"
requires-python = ">=3.10"
dependencies = [
"pyyaml >= 6.0",
"ccbr_tools@git+https://github.com/CCBR/Tools",
"cffconvert >= 2.0.0",
"Click >= 8.1.3",
"cffconvert"
"pyyaml >= 6.0"
]

[project.optional-dependencies]
Expand Down

0 comments on commit 9ce17e3

Please sign in to comment.