Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
snakefood / bin / sfood-target-files
Size: Mime:
#!/usr/bin/env python
"""
Simple script to print the right side of dependencies as filenames.
"""

from os.path import join
from snakefood.filter import do_filter

for _, (tbase, tfn) in do_filter():
    if tbase is not None:
        print join(tbase, tfn)