-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 1.12 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from distutils.core import setup
from distutils.extension import Extension
numpy_include_dirs = ['/usr/include/python2.6',
'/usr/lib64/python2.6/site-packages/numpy/core/include']
try:
from Cython.Distutils import build_ext
except:
print "You don't seem to have Cython installed. Please get a"
print "copy from www.cython.org and install it"
sys.exit(1)
setup(name='rnaseq',
version='0.1',
description='RNASeq analysis tool',
author='Fred Ross',
author_email='[email protected]',
cmdclass={'build_ext': build_ext},
packages=['rnaseq'],
ext_modules=[Extension("rnaseq.model",["rnaseq/model.pyx"],
include_dirs = numpy_include_dirs + ['.'],
extra_compile_args = ['-O3', '-Wall'],
extra_link_args = ['-g'])],
scripts=['bin/samfiles_to_sqlite.py', 'bin/find_subproblems.py',
'bin/inference.py',
'bin/simple_inference.py',
'bin/workflow.py'],
classifiers=['Topic :: Scientific/Engineering :: Bio-Informatics']
)