-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (41 loc) · 1.24 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools.extension import Extension
from seqlib.version import __version__
from Cython.Build import cythonize
ext_modules = [Extension('seqlib.align', ['seqlib/align.pyx'])]
setup(name='seqlib',
version=__version__,
description='NGS analysis toolkits',
author='Xiao-Ou Zhang',
author_email='kepbod@gmail.com',
url='https://github.com/kepbod/seqlib',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='NGS',
packages=['seqlib'],
package_data={'seqlib': ['data/*.msg']},
ext_modules=cythonize(ext_modules),
install_requires=[
'future',
'requests',
'pysam>=0.8.4',
'pybedtools>=0.7.8',
'docopt',
'beautifulsoup4',
'lxml',
'Cython'
],
scripts=[
'bin/fetch_geoinfo.py',
'bin/extract_junc.py',
'bin/extract_region.py'
]
)