X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=pysam.git;a=blobdiff_plain;f=setup.py;fp=setup.py;h=ef3d29f47e1e92fb383320dad8947ecf42b8d933;hp=925f0166e5f7314b5091a9363aeaa4c2cfe21c75;hb=60ebdbf39a4edd41ddda671b2d2d4442cf4468db;hpb=6a7c3f175b210cc16d09a5e8e4c1d47333dbe1c6 diff --git a/setup.py b/setup.py index 925f016..ef3d29f 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ import version version = version.__version__ -samtools_exclude = ( "bamtk.c", "razip.c", "bgzip.c" ) +samtools_exclude = ( "bamtk.c", "razip.c", "bgzip.c", "errmod.c", "bam_reheader.c", "bam2bcf.c" ) samtools_dest = os.path.abspath( "samtools" ) tabix_exclude = ( "main.c", ) tabix_dest = os.path.abspath( "tabix" ) @@ -109,7 +109,8 @@ metadata = { "pysam/namedtuple", "pysam/version" ], 'ext_modules': [samtools, tabix], - 'cmdclass' : {'build_ext': build_ext} } + 'cmdclass' : {'build_ext': build_ext}, + } if __name__=='__main__': dist = setup(**metadata)