Skip to content

Commit

Permalink
changes to MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasHeger committed Jun 16, 2014
1 parent 422071a commit fa1af6f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pysam/TabProxies.c
pysam/csamtools.c
pysam/ctabix.c
pysam/cvcf.c

pysam/chtslib.c

###### Generic python ignores below ######

Expand Down
19 changes: 7 additions & 12 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,9 @@ include INSTALL
include KNOWN_BUGS
include THANKS
include distribute_setup.py
include pysam/csamtools.pxd
include pysam/csamtools.pyx
include pysam/csamtools.c
include pysam/ctabix.pxd
include pysam/ctabix.c
include pysam/ctabix.pyx
include pysam/TabProxies.c
include pysam/TabProxies.pyx
include pysam/TabProxies.pxd
include pysam/cvcf.pyx
include pysam/cvcf.pxd
include pysam/cvcf.c
include pysam/c*.pxd
include pysam/c*.pyx
include pysam/c*.c
include pysam/*.c
include pysam/*.h
include pysam/pysam_util.h
Expand All @@ -29,6 +20,10 @@ include samtools/*.h
include samtools/*/*.h
include tabix/*.c
include tabix/*.h
include htslib/*.c
include htslib/*.h
include htslib/htslib/*.h
include htslib/htslib/*.c
include pysam.py

# pysam tests
Expand Down
Empty file added htslib/__init__.py
Empty file.
Empty file added htslib/htslib/__init__.py
Empty file.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,11 @@ def _compareAndCopy(src, srcdir, destdir, exclude):
# cp samtools/win32/*.h pysam/include/win32

try:
from setuptools import Extension, setup, find_packages
from setuptools import Extension, setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import Extension, setup, find_packages
from setuptools import Extension, setup

#######################################################
#######################################################
Expand Down

0 comments on commit fa1af6f

Please sign in to comment.