-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
38 lines (33 loc) · 1.53 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
#pylint: disable=line-too-long
import os
from setuptools import find_packages, setup
import katana
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as filename:
return filename.read()
setup(name='Katana',
version = katana.__version__,
description=('Command-line tool to soft-clip reads based on primer locations.'),
long_description=(read('README.rst') + '\n\n' +
read('CHANGELOG.rst') + '\n\n' +
read('AUTHORS.rst')),
url='https://github.com/umich-brcf-bioinf/Katana',
author='University of Michigan Bioinformatics Core',
author_email='bfx-katana@umich.edu',
license='Apache',
packages=find_packages(exclude=['test*']),
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics'],
keywords='bioinformatic exome-seq DNA-seq BAM',
install_requires=['pysam', 'natsort'],
entry_points={'console_scripts': ['katana=katana.clipper:main']},
test_suite='nose.collector',
tests_require=['nose', 'pysam', 'natsort','testfixtures'],
zip_safe=False)