Skip to content

Commit

Permalink
cparser setup
Browse files Browse the repository at this point in the history
  • Loading branch information
James Casbon committed Jun 14, 2012
1 parent a6613fc commit 62cbc36
Show file tree
Hide file tree
Showing 3 changed files with 993 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -5,3 +5,5 @@ dist
docs/_build
.ropeproject
1kg.prof
vcf/cparser.c
vcf/cparser.so
7 changes: 6 additions & 1 deletion setup.py
@@ -1,4 +1,7 @@
from setuptools import setup
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext

requires = []

Expand Down Expand Up @@ -62,5 +65,7 @@
include_package_data=True,
package_data = {
'': ['*.vcf', '*.gz', '*.tbi'],
}
},
cmdclass = {'build_ext': build_ext},
ext_modules = [Extension("vcf.cparser", ["vcf/cparser.pyx"])]
)

0 comments on commit 62cbc36

Please sign in to comment.