Skip to content
This repository was archived by the owner on Mar 2, 2021. It is now read-only.
This repository was archived by the owner on Mar 2, 2021. It is now read-only.

setup.py imports #94

Description

@jjfarrell

Both cython and pysam are part of the dependency list of required modules to be installed. So are not needed as import statements in the setup.py. An error occurs since they are not installed yet.

from setuptools import setup, find_packages
from Cython.Build import cythonize
import pysam

setup(
    name='svtk',
    version='0.1',
    description='Structural variation toolkit',
    author='Matthew Stone',
    author_email='mstone5@mgh.harvard.edu',
    packages=find_packages(),
    package_data={'svtk': ['data/*_template.vcf']},
    scripts=['scripts/svtk'],
    ext_modules=cythonize('svtk/utils/helpers.pyx'),
    include_dirs=pysam.get_include(),
    install_requires=[
        'numpy',
        'scipy',
        'pysam>=0.11.2.2',
        'pybedtools',
        'cython',
        'natsort',
        'boto3',
        'pandas',
    ]
)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions