File: __init__.py

package info (click to toggle)
python-pybedtools 0.8.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 16,140 kB
  • sloc: python: 9,589; cpp: 899; makefile: 149; sh: 116
file content (5 lines) | stat: -rw-r--r-- 159 bytes parent folder | download | duplicates (2)
1
2
3
4
5
import os.path as op
import glob

patt = op.join(op.abspath(op.dirname(__file__)), "*.py")
__all__ = [op.splitext(op.basename(p))[0] for p in glob.glob(patt)]