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

setup.py imports #94

Open
jjfarrell opened this issue Aug 26, 2019 · 0 comments
Open

setup.py imports #94

jjfarrell opened this issue Aug 26, 2019 · 0 comments

Comments

@jjfarrell
Copy link

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',
    ]
)

# for free to subscribe to this conversation on GitHub. Already have an account? #.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant