20 lines
721 B
Python
20 lines
721 B
Python
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class PyDeeptoolsintervals(PythonPackage):
|
|
"""A python module creating/accessing GTF-based interval trees with
|
|
associated meta-data."""
|
|
|
|
homepage = 'https://pypi.org/project/deeptoolsintervals/'
|
|
url = 'https://pypi.io/packages/source/d/deeptoolsintervals/deeptoolsintervals-0.1.9.tar.gz'
|
|
|
|
version('0.1.9', sha256='7d94c36fd2b6f10d8b99e536d2672e8228971f1fc810497d33527bba2c40d4f6')
|
|
|
|
depends_on('python@2.7:', type=('build', 'run'))
|
|
depends_on('py-setuptools', type='build')
|